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