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^) |
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.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

