WindowsRuntimeBufferExtensions::GetWindowsRuntimeBuffer Method (MemoryStream)
.NET Framework (current version)
Returns a Windows.Storage.Streams.IBuffer interface that represents the same memory as the specified memory stream.
This API is not CLS-compliant. Namespace: System.Runtime.InteropServices.WindowsRuntime
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[ExtensionAttribute] [CLSCompliantAttribute(false)] public: static IBuffer^ GetWindowsRuntimeBuffer( MemoryStream^ underlyingStream )
Parameters
- underlyingStream
- Type: System.IO::MemoryStream
The stream that provides the backing memory for the IBuffer.
Return Value
Type: IBufferA Windows.Storage.Streams.IBuffer interface that is backed by the same memory that backs the specified memory stream.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type MemoryStream. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Show: