Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
XamlReader Class
Load Method
 Load Method (XmlReader)

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
XamlReader..::.Load Method (XmlReader)

Reads the XAML markup in the specified XmlReader and returns an object that corresponds to the root of the specified markup.

Namespace:  System.Windows.Markup
Assembly:  PresentationFramework (in PresentationFramework.dll)
Visual Basic (Declaration)
Public Shared Function Load ( _
    reader As XmlReader _
) As Object
Visual Basic (Usage)
Dim reader As XmlReader
Dim returnValue As Object

returnValue = XamlReader.Load(reader)
C#
public static Object Load(
    XmlReader reader
)
Visual C++
public:
static Object^ Load(
    XmlReader^ reader
)
JScript
public static function Load(
    reader : XmlReader
) : Object
XAML
You cannot use methods in XAML.

Parameters

reader
Type: System.Xml..::.XmlReader
The XmlReader that has already loaded the markup to load in XML form.

Return Value

Type: System..::.Object
The object that is the root of the deserialized tree.
ExceptionCondition
ArgumentNullException

reader is nullNothingnullptra null reference (Nothing in Visual Basic).

The following example converts a Button into a string using the XamlWriter class. The string is then loaded back into a Button using the static Load method on the XamlReader class.

C#
// Create the Button.
Button originalButton = new Button();
originalButton.Height = 50;
originalButton.Width = 100;
originalButton.Background = Brushes.AliceBlue;
originalButton.Content = "Click Me";

// Save the Button to a string.
string savedButton = XamlWriter.Save(originalButton);

// Load the button
StringReader stringReader = new StringReader(savedButton);
XmlReader xmlReader = XmlReader.Create(stringReader);
Button readerLoadButton = (Button)XamlReader.Load(xmlReader);

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker