XamlWriter Class
Provides a single static Save method (multiple overloads) that can be used for limited XAML serialization of provided run-time objects into XAML markup.
Assembly: PresentationFramework (in PresentationFramework.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | Save(Object) | Returns a XAML string that serializes the specified object and its properties. |
![]() ![]() | Save(Object, Stream) | Saves XAML information into a specified stream to serialize the specified object and its properties. |
![]() ![]() | Save(Object, TextWriter) | Saves XAML information as the source for a provided TextWriter object. The output of the TextWriter can then be used to serialize the provided object and its properties. |
![]() ![]() | Save(Object, XamlDesignerSerializationManager) | Saves XAML information into a custom serializer. The output of the serializer can then be used to serialize the provided object and its properties. |
![]() ![]() | Save(Object, XmlWriter) | Saves XAML information as the source for a provided XmlWriter object. The output of the XmlWriter can then be used to serialize the provided object and its properties. |
The serialization enabled by this method has a series of limitations. This is because the serialization enabled is explicitly run-time, and does not have access to possible design-time information in the original XAML (if any). For details, see Serialization Limitations of XamlWriter.Save.
Calling Save is not permitted when running in partial trust. This includes from XBAPs.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
