CreateComplexProperty method

  1. @override
AttributedString? CreateComplexProperty(
  1. String xmlElementName
)
override
Creates an AttributedString object from an XML element name. The XML element name from which to create the attributed String object

Implementation

@override
AttributedString? CreateComplexProperty(String xmlElementName) {
  EwsUtilities.ValidateParam(xmlElementName, "xmlElementName");
  if (xmlElementName == this._collectionItemXmlElementName) {
    return new AttributedString();
  } else {
    return null;
  }
}