[Missing <summary> documentation for "M:BasicCard.Framework.CardReaderObserver.WaitForCard(BasicCard.Framework.ICardSelector,System.TimeSpan,System.Boolean,BasicCard.Terminals.ICardReader[])"]
Namespace: BasicCard.FrameworkAssembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)
Syntax
C# |
---|
public ICardConnection WaitForCard(
ICardSelector selector,
TimeSpan timeout,
bool shared,
ICardReader[] readersToSearch
) |
Visual Basic |
---|
Public Function WaitForCard (
selector As ICardSelector,
timeout As TimeSpan,
shared As Boolean,
readersToSearch As ICardReader()
) As ICardConnection |
Visual C++ |
---|
public:
ICardConnection^ WaitForCard(
ICardSelector^ selector,
TimeSpan timeout,
bool shared,
array<ICardReader^>^ readersToSearch
) |
F# |
---|
member WaitForCard :
selector : ICardSelector *
timeout : TimeSpan *
shared : bool *
readersToSearch : ICardReader[] -> ICardConnection
|
Parameters
- selector
- Type: BasicCard.Framework..::..ICardSelector
Selector to be used to identify the card.
- timeout
- Type: System..::..TimeSpan
Maximum time to wait for a matching card or TimeSpan.MaxValue to wait indefinite.
- shared
- Type: System..::..Boolean
If true card should available for shared use, otherwise exclusiv access is required.
- readersToSearch
- Type: array<BasicCard.Terminals..::..ICardReader>[]()[][]
Array of card readers to search. Or null to search within all available card readers.
Return Value
Type:
ICardConnectionCard connection or null if timed out.
See Also