Inheritance: IDisposable
Exemplo n.º 1
0
 private static void* __CopyValue(Communication.Internal native)
 {
     var ret = Marshal.AllocHGlobal(8);
     *(Communication.Internal*) ret = native;
     return ret.ToPointer();
 }
Exemplo n.º 2
0
 private Communication(Communication.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Exemplo n.º 3
0
 public static Communication __CreateInstance(Communication.Internal native, bool skipVTables = false)
 {
     return new Communication(native, skipVTables);
 }