public CKR C_EX_GetTokenInfoExtended(NativeULong slotId, ref CK_TOKEN_INFO_EXTENDED info)
        {
            if (_disposed)
            {
                throw new ObjectDisposedException(GetType().FullName);
            }

            NativeULong rv = _rutokenDelegates.C_EX_GetTokenInfoExtended(slotId, ref info);

            return((CKR)rv);
        }
Ejemplo n.º 2
0
 internal static extern NativeULong C_EX_GetTokenInfoExtended(NativeULong slotId, ref CK_TOKEN_INFO_EXTENDED info);