Net.Pkcs11Interop.LowLevelAPI40.Pkcs11.C_GetFunctionList C# (CSharp) 메소드

C_GetFunctionList() 공개 메소드

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
리턴 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;
        }