TryReadElementFromXml method
Implementation
@override
bool TryReadElementFromXml(EwsServiceXmlReader reader) {
bool result = super.TryReadElementFromXml(reader);
if (!result) {
if (reader.LocalName == XmlElementNames.Bitmask) {
// EWS always returns the Bitmask value in hexadecimal
this.bitmask = int.parse(
reader.ReadAttributeValue(XmlAttributeNames.Value),
radix: 16);
}
}
return result;
}