TryReadElementFromXml method

  1. @override
Future<bool> TryReadElementFromXml(
  1. EwsServiceXmlReader reader
)
override
Tries to read element from XML. The reader.

Implementation

@override
Future<bool> TryReadElementFromXml(EwsServiceXmlReader reader) async {
  OutParam<PropertyDefinitionBase> outParam =
      new OutParam<PropertyDefinitionBase>();
  outParam.param = this.propertyDefinition;

  return PropertyDefinitionBase.TryLoadFromXml(reader, outParam);
}