CapyKit/Documentation/Help/T_CapyKit_CapyEventHandler.md
Jordan Wages 735d7c4c91 Documentation + Unfinished SecurityHelper
Committing the unfinished changes to the SecurityHelper as I flesh it out during the migration. Also starting a documentation folder powered by Sandcastle.
2024-04-19 23:12:24 -05:00

864 B

CapyEventHandler Delegate

A delegate representing an event handler that accepts a CapyEventArgs instance.

Definition

Namespace: CapyKit
Assembly: CapyKit (in CapyKit.dll) Version: 1.0.0+6cdd805be49c3b769a116584ea6904955ecd820d

C#

public delegate void CapyEventHandler(
	CapyEventArgs e
)

VB

Public Delegate Sub CapyEventHandler ( 
	e As CapyEventArgs
)

C++

public delegate void CapyEventHandler(
	CapyEventArgs^ e
)

F#

type CapyEventHandler = 
    delegate of 
        e : CapyEventArgs -> unit

Parameters

  CapyEventArgs
The CapyEventArgs instance containing event data.

See Also

Reference

CapyKit Namespace