WindowsRuntimeBufferExtensions Class

Definition

Provides extension methods for operating on Windows Runtime buffers (Windows.Storage.Streams.IBuffer interface).

public ref class WindowsRuntimeBufferExtensions abstract sealed
public static class WindowsRuntimeBufferExtensions
[System.Security.SecurityCritical]
public static class WindowsRuntimeBufferExtensions
type WindowsRuntimeBufferExtensions = class
[<System.Security.SecurityCritical>]
type WindowsRuntimeBufferExtensions = class
Public Module WindowsRuntimeBufferExtensions
Inheritance
WindowsRuntimeBufferExtensions
Attributes

Methods

AsBuffer(Byte[])

Returns a Windows.Storage.Streams.IBuffer interface that represents the specified byte array.

AsBuffer(Byte[], Int32, Int32)

Returns a Windows.Storage.Streams.IBuffer interface that represents a range of bytes in the specified byte array.

AsBuffer(Byte[], Int32, Int32, Int32)

Returns a Windows.Storage.Streams.IBuffer interface that represents a range of bytes in the specified byte array. Optionally sets the Length property of the IBuffer to a value that is less than the capacity.

AsStream(IBuffer)

Returns a stream that represents the same memory that the specified Windows.Storage.Streams.IBuffer interface represents.

CopyTo(Byte[], IBuffer)

Copies all bytes from the source array to the destination buffer (Windows.Storage.Streams.IBuffer), starting at offset 0 (zero) in both. The method does not update the length of the destination buffer.

CopyTo(Byte[], Int32, IBuffer, UInt32, Int32)

Copies bytes from the source array to the destination buffer (Windows.Storage.Streams.IBuffer), specifying the starting index in the source array, the starting index in the destination buffer, and the number of bytes to copy. The method does not update the Length property of the destination buffer.

CopyTo(IBuffer, Byte[])

Copies all bytes from the source buffer (Windows.Storage.Streams.IBuffer) to the destination array, starting at offset 0 (zero) in both.

CopyTo(IBuffer, IBuffer)

Copies all bytes from the source buffer (Windows.Storage.Streams.IBuffer) to the destination buffer, starting at offset 0 (zero) in both.

CopyTo(IBuffer, UInt32, Byte[], Int32, Int32)

Copies bytes from the source buffer (Windows.Storage.Streams.IBuffer) to the destination array, specifying the starting index in the source buffer, the starting index in the destination array, and the number of bytes to copy.

CopyTo(IBuffer, UInt32, IBuffer, UInt32, UInt32)

Copies bytes from the source buffer (Windows.Storage.Streams.IBuffer) to the destination buffer, specifying the starting index in the source, the starting index in the destination, and the number of bytes to copy.

GetByte(IBuffer, UInt32)

Returns the byte at the specified offset in the specified Windows.Storage.Streams.IBuffer interface.

GetWindowsRuntimeBuffer(MemoryStream)

Returns a Windows.Storage.Streams.IBuffer interface that represents the same memory as the specified memory stream.

GetWindowsRuntimeBuffer(MemoryStream, Int32, Int32)

Returns a Windows.Storage.Streams.IBuffer interface that represents a region within the memory that the specified memory stream represents.

IsSameData(IBuffer, IBuffer)

Returns a value that indicates whether two buffers (Windows.Storage.Streams.IBuffer objects) represent the same underlying memory region.

ToArray(IBuffer)

Returns a new array that is created from the contents of the specified buffer (Windows.Storage.Streams.IBuffer). The size of the array is the value of the Length property of the IBuffer.

ToArray(IBuffer, UInt32, Int32)

Returns a new array that is created from the contents of the specified buffer (Windows.Storage.Streams.IBuffer), starting at a specified offset and including a specified number of bytes.

Applies to