XamlServices::Save Method (String^, Object^)

.NET Framework (current version)
 

Processes a provided object graph into a XAML node representation and then writes it to an output file at a provided location.

Namespace:   System.Xaml
Assembly:  System.Xaml (in System.Xaml.dll)

public:
static void Save(
	String^ fileName,
	Object^ instance
)

Parameters

fileName
Type: System::String^

The name and location of the file to write the output to.

instance
Type: System::Object^

The root of the object graph to process.

Exception Condition
ArgumentException

fileName is an empty string.

ArgumentNullException

fileName is null.

The fileName parameter value is used as the outputFileName input for a call to XmlWriter::Create, which creates a XmlWriter as part of the method call.

.NET Framework
Available since 4.0
Return to top
Show: