Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.Runtime.InteropServices.GCHandleType

Assembly: System.Runtime

Represents the types of handles the <see cref="T:System.Runtime.InteropServices.GCHandle" /> type can allocate.

Values

Weak
This handle type is used to track an object, but allow it to be collected. When an object is collected, the contents of the <see cref="T:System.Runtime.InteropServices.GCHandle" /> are zeroed. <see langword="Weak" /> references are zeroed before the finalizer runs, so even if the finalizer resurrects the object, the <see langword="Weak" /> reference is still zeroed.
WeakTrackResurrection
This handle type is similar to <see cref="F:System.Runtime.InteropServices.GCHandleType.Weak" /> , but the handle is not zeroed if the object is resurrected during finalization.
Normal
This handle type represents an opaque handle, meaning you cannot resolve the address of the pinned object through the handle. You can use this type to track an object and prevent its collection by the garbage collector. This enumeration member is useful when an unmanaged client holds the only reference, which is undetectable from the garbage collector, to a managed object.
Pinned
This handle type is similar to <see cref="F:System.Runtime.InteropServices.GCHandleType.Normal" /> , but allows the address of the pinned object to be taken. This prevents the garbage collector from moving the object and hence undermines the efficiency of the garbage collector. Use the <see cref="M:System.Runtime.InteropServices.GCHandle.Free" /> method to free the allocated handle as soon as possible.