Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
XamlWriter Class
Collapse All/Expand All Collapse All
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
XamlWriter Class

Provides a single static Save method (multiple signatures) that can be used for limited Extensible Application Markup Language (XAML) serialization of provided runtime objects into XAML. This class cannot be inherited, and only has static methods.

Namespace:  System.Windows.Markup
Assembly:  PresentationFramework (in PresentationFramework.dll)
Visual Basic (Declaration)
Public NotInheritable Class XamlWriter
Visual Basic (Usage)
You do not need to declare an instance of a static class in order to access its members.
C#
public static class XamlWriter
Visual C++
public ref class XamlWriter abstract sealed
JScript
public final class XamlWriter
XAML
You cannot directly create an instance of this class in XAML.

The serialization enabled by this class' Save method has a series of limitations, primarily due to the fact that the serialization enabled is explicitly run-time, and does not have access to possible design-time information in the original Extensible Application Markup Language (XAML) (if any). For details, see Serialization Limitations of XamlWriter.Save.

Save is not allowed when running in Partial Trust.

The following example serializes a Button into a string using the XamlWriter class. The string is then deserialized 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);
System..::.Object
  System.Windows.Markup..::.XamlWriter
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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 | Site Feedback
Page view tracker