PocketPlanner Programmer's Guide

Schedule.SaveTo Method (XmlWriter, Boolean)

See Also

Saves the schedule to an XML document.

 Since version 4.4, this method is considered obsolete. Instead, use the SaveToXml method.

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

public void SaveTo (
    XmlWriter writer,
    bool document
)

Visual Basic

Public Sub SaveTo ( _
    writer As XmlWriter, _
    document As Boolean _
)

 Parameters

writer
A .NET XmlWriter object that allows adding data to the XML document.
document
Specifies whether the schedule data should be written as a top-level element in the XML document.

 Remarks

Saves the schedule data as tags in an XML document. Use LoadFrom to restore the schedule data later.

 See Also