XamlReader::Load Method (Stream^)
.NET Framework (current version)
Reads the XAML input in the specified Stream and returns an Object that is the root of the corresponding object tree.
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- stream
-
Type:
System.IO::Stream^
The XAML to load, in stream form.
| Exception | Condition |
|---|---|
| ArgumentNullException | stream is null. |
The following example saves a Button into a MemoryStream using the XamlWriter class. The stream is then loaded back into a Button using the static Load method on the XamlReader class.
.NET Framework
Available since 3.0
Available since 3.0
Show: