[DllImport("winscard.dll")]
static extern int SCardTransmit(int hCard, ref SCARD_IO_REQUEST pioSendPci, byte[] pbSendBuffer, int cbSendLength, IntPtr pioRecvPci, byte[] pbRecvBuffer, ref int pcbRecvLength);
User-Defined Types:
None.
Notes:
None.
Tips & Tricks:
One may Get the SCARD_IO_REQUEST values which are defined as pointer to initialised data export in WinSCard.dll using the LoadLibrary and GetProcAddress pair.
Sample Code:
Please add some!
Alternative Managed API:
TODO
The SCardTransmit function sends a service request to the smart card and expects to receive data back from the card.