3 writes to _handle
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\PinnedGCHandle.T.cs (3)
37_handle = GCHandle.InternalAlloc(target, GCHandleType.Pinned); 40private PinnedGCHandle(IntPtr handle) => _handle = handle; 130_handle = IntPtr.Zero;
8 references to _handle
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\PinnedGCHandle.T.cs (8)
43public readonly bool IsAllocated => _handle != IntPtr.Zero; 51IntPtr handle = _handle; 58IntPtr handle = _handle; 119public static IntPtr ToIntPtr(PinnedGCHandle<T> value) => value._handle; 127IntPtr handle = _handle; 139public readonly bool Equals(PinnedGCHandle<T> other) => _handle == other._handle; 145public override readonly int GetHashCode() => _handle.GetHashCode();