Net.Pkcs11Interop.LowLevelAPI40.Pkcs11.C_GetFunctionList C# (CSharp) Method

C_GetFunctionList() public method

Returns a pointer to the Cryptoki library's list of function pointers
public C_GetFunctionList ( IntPtr &functionList ) : CKR
functionList System.IntPtr Pointer to a value which will receive a pointer to the library's CK_FUNCTION_LIST structure
return CKR
        public CKR C_GetFunctionList(out IntPtr functionList)
        {
            if (this._disposed)
                throw new ObjectDisposedException(this.GetType().FullName);

            uint rv = _delegates.C_GetFunctionList(out functionList);
            return (CKR)rv;
        }