Ejemplo n.º 1
0
 public void GetAttrib(SCARD_ATTR attrId, byte[] responseBuffer, ref int responseLength)
 {
     GetAttrib((uint)attrId, responseBuffer, ref responseLength);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// The SCardGetAttrib function gets the current reader attributes.
 /// It does not affect the state of the reader, driver, or card.
 /// </summary>
 /// <param name="attrId">
 /// Identifier for the attribute to get.
 /// </param>
 /// <param name="responseBuffer">
 /// The response buffer.
 /// </param>
 /// <param name="responseLength">
 /// Supplies the length of the responseBuffer in bytes, and receives the actual length
 /// of the received attribute.
 /// </param>
 public void GetAttrib(SCARD_ATTR attrId, byte[] responseBuffer, ref int responseLength)
 {
     GetAttrib((uint)attrId, responseBuffer, ref responseLength);
 }
Ejemplo n.º 3
0
 public void GetAttrib(SCARD_ATTR AttrId)
 {
     byte[] respBuffer = new byte[512];
     int respLength = respBuffer.Length;
     GetAttrib(AttrId, respBuffer, ref respLength);
 }