WriteToXmlWithNamespace method
void
WriteToXmlWithNamespace(
- EwsServiceXmlWriter writer,
- XmlNamespace xmlNamespace,
- String? xmlElementName
override
Implementation
@override
void WriteToXmlWithNamespace(EwsServiceXmlWriter writer,
XmlNamespace xmlNamespace, String? xmlElementName) {
// Only write collection if it has at least one element.
if (this._entries.length > 0) {
super.WriteToXmlWithNamespace(writer, xmlNamespace, xmlElementName);
}
}