Beispiel #1
0
 public void Dispose()
 {
     if (this._pbData != null)
     {
         this._pbData.Dispose();
         this._pbData = null;
     }
 }
Beispiel #2
0
 public void CopyData(byte[] encodedName)
 {
     this._pbData = new SafeGlobalMemoryHandle(encodedName);
     this._cbData = encodedName.Length;
 }
Beispiel #3
0
 public static extern bool GlobalUnlock(SafeGlobalMemoryHandle hMem);
Beispiel #4
0
 public CERT_NAME_BLOB(int cb, SafeGlobalMemoryHandle handle)
 {
     this._cbData = cb;
     this._pbData = handle;
 }
Beispiel #5
0
 public static extern unsafe void *GlobalLock(SafeGlobalMemoryHandle hMem);