Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than winscard, prefix the name with the module name and a period.
int hContext,
[MarshalAs(UnmanagedType.LPTStr)] string szReader,
UInt32 dwShareMode,
UInt32 dwPreferredProtocols,
out int phCard,
out UInt32 pdwActiveProtocol);
User-Defined Types:
Value of dwShareMode:
SCARD_SHARE_SHARED = 0x00000002 - This application will allow others to share the reader
SCARD_SHARE_EXCLUSIVE = 0x00000001 - This application will NOT allow others to share the reader
SCARD_SHARE_DIRECT = 0x00000003 - Direct control of the reader, even without a card
Value of dwPreferredProtocols
SCARD_PROTOCOL_T0 - Use the T=0 protocol (value = 0x00000001)
SCARD_PROTOCOL_T1 - Use the T=1 protocol (value = 0x00000002)
SCARD_PROTOCOL_RAW - Use with memory type cards (value = 0x00000004)
The SCardConnect function establishes a connection (using a specific resource manager context) between the calling application and a smart card contained by a specific reader. If no card exists in the specified reader, an error is returned.
2/20/2012 7:46:16 PM - -60.49.32.216
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).