Wait for a card supported by specified service to be available.

Overload List

Remarks

This function will not return until either:

Examples

Example C#:
 Copy imageCopy
BasicCardService service=(BasicCardService)
    CardReaderObserver.Instance.WaitForCardService(new BasicCardService(), TimeSpan.MaxValue);
if (null!=service)
{
    // using service in here
}
Example Visual Basic:
 Copy imageCopy
Dim service as BasicCardService
service = CardReaderObserver.Instance.WaitForCardService(New BasicCardService(), TimeSpan.MaxValue)
if Not (service Is Nothing) then
    ' using service in here
end if

See Also