WindowsRuntimeBufferExtensions::AsStream Method
.NET Framework (current version)
Returns a stream that represents the same memory that the specified Windows.Storage.Streams.IBuffer interface represents.
This API is not CLS-compliant. Namespace: System.Runtime.InteropServices.WindowsRuntime
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[CLSCompliantAttribute(false)] [ExtensionAttribute] public: static Stream^ AsStream( IBuffer^ source )
Parameters
- source
- Type: IBuffer
The IBuffer to represent as a stream.
Return Value
Type: System.IO::StreamA stream that represents the same memory that the specified Windows.Storage.Streams.IBuffer interface represents.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IBuffer. 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).| Exception | Condition |
|---|---|
| ArgumentNullException | source is nullptr. |
Show: