예제 #1
0
        public void Close()
        {
            IStorePal?storePal = _storePal;

            _storePal = null;
            if (storePal != null)
            {
                storePal.Dispose();
            }
        }
예제 #2
0
 public X509Store(IntPtr storeHandle)
 {
     _storePal = StorePal.FromHandle(storeHandle);
     Debug.Assert(_storePal != null);
 }
예제 #3
0
 public void Open(OpenFlags flags)
 {
     Close();
     _storePal = StorePal.FromSystemStore(Name !, Location, flags);
 }