XamlServices::Load Method (TextReader^)

.NET Framework (current version)
 

Creates a XAML reader from a TextReader, and returns an object graph.

Namespace:   System.Xaml
Assembly:  System.Xaml (in System.Xaml.dll)

public:
static Object^ Load(
	TextReader^ textReader
)

Parameters

textReader
Type: System.IO::TextReader^

The TextReader to use as the basis for the created XmlReader.

Return Value

Type: System::Object^

The object graph that is returned.

Exception Condition
ArgumentNullException

textReader is null.

In order to return the object graph, the textReader input should be constructed by using its relevant input. For example, it should pass a StringReader that is constructed by using a valid XAML-as-string input for the StringReader(String^) constructor.

.NET Framework
Available since 4.0
Return to top
Show: