WindowsRuntimeStreamExtensions.AsInputStream Method
.NET Framework (current version)
Converts a managed stream in the .NET for Windows 8.x Store apps to an input stream in the Windows Runtime.
This API is not CLS-compliant. Namespace: System.IO
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[<CLSCompliantAttribute(false)>] static member AsInputStream : stream:Stream -> IInputStream
Parameters
- stream
- Type: System.IO.Stream
The stream to convert.
Return Value
Type: IInputStreamA Windows Runtime IInputStream object that represents the converted stream.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Stream. 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 | stream is a null reference (Nothing in Visual Basic). |
| NotSupportedException | The stream does not support reading. |
The following example shows how to use the AsInputStream and AsOutputStream methods to convert a managed stream to and from a stream in the Windows Runtime.
Here's the XAML code that is associated with the previous example.
<Page x:Class="ExampleApplication.BlankPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:ExampleApplication" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> <StackPanel Background="{StaticResource ApplicationPageBackgroundBrush}" VerticalAlignment="Center" HorizontalAlignment="Center"> <Button Name="CreateButton" Content="Write and read with stream" Click="CreateButton_Click"></Button> <TextBlock Name="Results"></TextBlock> </StackPanel> </Page>
Show: