XamlWriter::Save Method (Object^, Stream^)

 

Saves XAML information into a specified stream to serialize the specified object and its properties.

Namespace:   System.Windows.Markup
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
static void Save(
	Object^ obj,
	Stream^ stream
)

Parameters

obj
Type: System::Object^

The element to be serialized. Typically, this is the root element of a page or application.

stream
Type: System.IO::Stream^

Destination stream for the serialized XAML information.

Exception Condition
ArgumentNullException

obj or stream 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.

The following example serializes a Button into a MemoryStream using the XamlWriter class. The stream is then deserialized back into a Button using the static Load method on the XamlReader class.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: