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
You do not need to declare an instance of a static class in order to access its members.
public static class XamlWriter
public ref class XamlWriter abstract sealed
public final class XamlWriter
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.
// 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
Reference
Other Resources