IPinnable.Pin(Int32) Method

Definition

Pins a block of memory.

public:
 System::Buffers::MemoryHandle Pin(int elementIndex);
public System.Buffers.MemoryHandle Pin (int elementIndex);
abstract member Pin : int -> System.Buffers.MemoryHandle
Public Function Pin (elementIndex As Integer) As MemoryHandle

Parameters

elementIndex
Int32

The offset to the element within the memory buffer to which the returned MemoryHandle points.

Returns

A handle to the block of memory.

Remarks

A developer can access an object that implements the IPinnable interface without pinning it only through managed APIs. Pinning is required for access by unmanaged APIs.

Call this method to indicate that the IPinnable object cannot be moved by the garbage collector so that the address of the pinned object can be used.

Applies to