ResultGetKey() public static method

public static ResultGetKey ( IntPtr handle, int row ) : byte[]
handle System.IntPtr
row int
return byte[]
Ejemplo n.º 1
0
 /// <summary>
 /// Returns the key of a specific row.
 /// </summary>
 public byte[] GetKey(int row)
 {
     return(NativeMethods.ResultGetKey(handle, row));
 }