Card event handler e.g. for card insertion and removal events.

Namespace: BasicCard.Framework
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
[CLSCompliantAttribute(true)]
public delegate void CardEventHandler(
	Object sender,
	CardEvent e
)
Visual Basic
<CLSCompliantAttribute(true)>
Public Delegate Sub CardEventHandler ( 
	sender As Object,
	e As CardEvent
)
Visual C++
[CLSCompliantAttribute(true)]
public delegate void CardEventHandler(
	Object^ sender, 
	CardEvent^ e
)
F#
[<CLSCompliantAttribute(true)>]
type CardEventHandler = 
    delegate of 
        sender : Object * 
        e : CardEvent -> unit

Parameters

sender
Type: System..::..Object
e
Type: BasicCard.Framework..::..CardEvent

Remarks

Sender is always the CardReader the event is belonging to.

See Also