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