XamlWriter::Save Method (Object^, XamlDesignerSerializationManager^)
.NET Framework (current version)
Saves XAML information into a custom serializer. The output of the serializer 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.
- manager
-
Type:
System.Windows.Markup::XamlDesignerSerializationManager^
A custom serialization implementation.
| Exception | Condition |
|---|---|
| ArgumentNullException | obj or manager 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.
.NET Framework
Available since 3.0
Available since 3.0
Show: