AppointmentXmlPersistenceHelper.ObjectFromXml(IAppointmentStorageBase, XmlNode) Method
In This Article
Restores an appointment from an XML serialized string.
Namespace: DevExpress.XtraScheduler.Xml
Assembly: DevExpress.XtraScheduler.v24.2.Core.dll
NuGet Package: DevExpress.Scheduler.Core
#Declaration
public static Appointment ObjectFromXml(
IAppointmentStorageBase storage,
XmlNode root
)
#Parameters
Name | Type | Description |
---|---|---|
storage | IAppointment |
An IScheduler |
root | Xml |
A Xml |
#Returns
Type | Description |
---|---|
Appointment | An Appointment object created from the string. |
#Remarks
Use the ObjectFromXml method to de-serialize an appointment serialized with the XtraScheduler.Xml.XmlPersistenceHelper.ToXml
method.
See Also