IMemoryBuffer.CreateReference Method

Definition

Returns a new Windows Runtime object that implements the IMemoryBufferReference interface.

public:
 IMemoryBufferReference ^ CreateReference();
IMemoryBufferReference CreateReference();
public IMemoryBufferReference CreateReference();
function createReference()
Public Function CreateReference () As IMemoryBufferReference

Returns

A new Windows Runtime object that implements the IMemoryBufferReference interface.

Remarks

This method always successfully returns a new IMemoryBufferReference object even after the IMemoryBuffer has been closed. In that case, the returned IMemoryBufferReference is already closed. Therefore, the IMemoryBufferReference instance's Capacity property will be zero and IMemoryBufferByteAccess::GetBuffer method will always return a null memory pointer and zero capacity.

Applies to