ReadServiceObjectsCollectionFromXml<TServiceObject extends ServiceObject> method
Future<List<TServiceObject> >
ReadServiceObjectsCollectionFromXml<TServiceObject extends ServiceObject>(
- String collectionXmlElementName,
- IGetObjectInstanceDelegate<
TServiceObject> getObjectInstanceDelegate, - bool clearPropertyBag,
- PropertySet? requestedPropertySet,
- bool summaryPropertiesOnly,
Implementation
Future<List<TServiceObject>>
ReadServiceObjectsCollectionFromXml<TServiceObject extends ServiceObject>(
String collectionXmlElementName,
IGetObjectInstanceDelegate<TServiceObject> getObjectInstanceDelegate,
bool clearPropertyBag,
PropertySet? requestedPropertySet,
bool summaryPropertiesOnly) async {
return this
.ReadServiceObjectsCollectionFromXmlWithNamespace<TServiceObject>(
XmlNamespace.Messages,
collectionXmlElementName,
getObjectInstanceDelegate,
clearPropertyBag,
requestedPropertySet,
summaryPropertiesOnly);
}