WriteToXml method
Implementation
void WriteToXml(EwsServiceXmlWriter writer, Grouping? groupBy) {
this
.GetPropertySetOrDefault()
.WriteToXml(writer, this.GetServiceObjectType());
writer.WriteStartElement(
XmlNamespace.Messages, this.GetViewXmlElementName());
this.InternalWriteViewToXml(writer);
writer.WriteEndElement(); // this.GetViewXmlElementName()
this.InternalWriteSearchSettingsToXml(writer, groupBy);
}