LoadFromXmlWithNamespace method

Future<void> LoadFromXmlWithNamespace(
  1. EwsServiceXmlReader reader,
  2. XmlNamespace xmlNamespace,
  3. String? xmlElementName
)
Loads from XML. The reader. The XML namespace. Name of the XML element.

Implementation

Future<void> LoadFromXmlWithNamespace(EwsServiceXmlReader reader,
    XmlNamespace xmlNamespace, String? xmlElementName) async {
  await this._InternalLoadFromXml(
      reader, xmlNamespace, xmlElementName, this.TryReadElementFromXml);
}