Net.Pkcs11Interop.HighLevelAPI81.Slot.CloseAllSessions C# (CSharp) Method

CloseAllSessions() public method

Closes all sessions an application has with a token
public CloseAllSessions ( ) : void
return void
        public void CloseAllSessions()
        {
            CKR rv = _p11.C_CloseAllSessions(_slotId);
            if (rv != CKR.CKR_OK)
                throw new Pkcs11Exception("C_CloseAllSessions", rv);
        }
    }