ReminderInfoCollectionXmlPersistenceHelper.ObjectFromXml(ReminderInfoCollection, String) Method
In This Article
Restores reminder information from the specified XML string.
Namespace: DevExpress.XtraScheduler.Xml
Assembly: DevExpress.XtraScheduler.v24.2.Core.dll
NuGet Package: DevExpress.Scheduler.Core
#Declaration
public static ReminderInfoCollection ObjectFromXml(
ReminderInfoCollection reminderInfos,
string xml
)
#Parameters
Name | Type | Description |
---|---|---|
reminder |
DevExpress. |
A collection of reminder information. |
xml | String | A string containing information in xml format. |
#Returns
Type | Description |
---|---|
DevExpress. |
A collection of objects that contain information about reminders. |
#Remarks
To restore reminder info for the appointment from an XML string, use the ObjectFromXml method to obtain a DevExpress.XtraScheduler.Xml.ReminderInfoCollection object.
ReminderInfoCollection parsedReminders = new ReminderInfoCollection();
ReminderInfoCollectionXmlPersistenceHelper.ObjectFromXml(parsedReminders, reminderXML);
See Also