Factory interface needed to create real ICardReader objects.
Namespace: BasicCard.TerminalsAssembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)
Syntax
C# |
---|
[CLSCompliantAttribute(true)] public interface ICardReaderFactory |
Visual Basic |
---|
<CLSCompliantAttribute(true)> Public Interface ICardReaderFactory |
Visual C++ |
---|
[CLSCompliantAttribute(true)] public interface class ICardReaderFactory |
F# |
---|
[<CLSCompliantAttribute(true)>] type ICardReaderFactory = interface end |
Remarks
The BasicCard library comes with a certain set of factory classes for supported card reader. So application developer do not need to take use or implement this interface.
Anyhow it is possible to add support for further card reader to this library. For this developer need to implement ICardReader interface and ICardReaderFactory interface.
![]() |
---|
A card reader factory must/will always return the same object for the same card reader. |