Class TriangleOwnedHandle
public class TriangleOwnedHandle : TriangleHandle, IDisposable, IEquatable<TriangleHandle>
- Inheritance
-
TriangleOwnedHandle
- Implements
- Derived
- Inherited Members
Constructors
TriangleOwnedHandle(nint)
Creates a new instance of TriangleOwnedHandle. Assumes that the given pointer is owned by the runtime.
public TriangleOwnedHandle(nint ptr)
Parameters
ptr
nint
Methods
FromUnowned(nint)
Create a TriangleOwnedHandle from a pointer that is assumed unowned. To do so a boxed copy is created of the given pointer to be used as the handle.
public static TriangleOwnedHandle FromUnowned(nint ptr)
Parameters
ptr
nintA pointer to a Triangle which is not owned by the runtime.
Returns
- TriangleOwnedHandle
A TriangleOwnedHandle
ReleaseHandle()
When overridden in a derived class, executes the code required to free the handle.
protected override bool ReleaseHandle()