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

AppointmentXmlPersistenceHelper.ObjectFromXml(IAppointmentStorageBase, XmlNode) Method

Restores an appointment from an XML serialized string.

Namespace: DevExpress.XtraScheduler.Xml

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

Declaration

public static Appointment ObjectFromXml(
    IAppointmentStorageBase storage,
    XmlNode root
)

Parameters

Name Type Description
storage IAppointmentStorageBase

An ISchedulerStorageBase object that provides an appointment factory, custom field mappings and time zone translation.

root XmlNode

A XmlNode object that is the root node in XML document containing the serialized appointment.

Returns

Type Description
Appointment

An Appointment object created from the string.

Remarks

Use the ObjectFromXml method to de-serialize an appointment serialized with the PersistentObject.ToXml method.

See Also