Skip to main content

AppointmentCollection.ReadXml(Stream) Method

Reads the settings of the appointments from the specified stream.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.dll

NuGet Package: DevExpress.Scheduler.Core

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.

See Also