Register card event handler to be notified about card insertion and removal events.

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

Syntax

C#
public void AddCardEventHandler(
	CardEventHandler handler
)
Visual Basic
Public Sub AddCardEventHandler ( 
	handler As CardEventHandler
)
Visual C++
public:
void AddCardEventHandler(
	CardEventHandler^ handler
)
F#
member AddCardEventHandler : 
        handler : CardEventHandler -> unit 

Parameters

handler
Type: BasicCard.Framework..::..CardEventHandler
Card event handler to add.

Remarks

Card event handler are called from separate thread. This will cause problems when processed in forms or windows controls.

See Also