コード例 #1
0
ファイル: Slot.cs プロジェクト: arkkadin/pkcs11Interop
        /// <summary>
        /// Converts platform specific Slot to platfrom neutral Slot
        /// </summary>
        /// <param name="slot">Platform specific Slot</param>
        internal Slot(HighLevelAPI81.Slot slot)
        {
            if (slot == null)
            {
                throw new ArgumentNullException("slot");
            }

            _slot81 = slot;
        }
コード例 #2
0
ファイル: Slot.cs プロジェクト: Pkcs11Interop/Pkcs11Interop
        /// <summary>
        /// Converts platform specific Slot to platfrom neutral Slot
        /// </summary>
        /// <param name="slot">Platform specific Slot</param>
        internal Slot(HighLevelAPI81.Slot slot)
        {
            if (slot == null)
                throw new ArgumentNullException("slot");

            _slot81 = slot;
        }