Skip to main content
A newer version of this page is available. .

AppointmentCollection.ReadXml(Stream) Method

Reads the settings of the appointments from the specified stream.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

Declaration

public virtual void ReadXml(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream descendant from which appointments are read. If null (Nothing in Visual Basic), an exception is raised.

Remarks

Use the ReadXml method to load appointments that were written to a file in XML format using the AppointmentCollection.WriteXml method. After the appointments have been loaded, the SchedulerStorageBase.AppointmentCollectionLoaded event is raised.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ReadXml(Stream) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also