XamlWriter::Save Method (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.
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- obj
-
Type:
System::Object^
The element to be serialized. Typically, this is the root element of a page or application.
- writer
-
Type:
System.IO::TextWriter^
A TextWriter instance as the destination where the serialized XAML information is written.
| Exception | Condition |
|---|---|
| ArgumentNullException | obj or writer is null. |
| SecurityException | The application is not running in full trust. |
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.
Available since 3.0