AttributedStringCollection.withElementName constructor

AttributedStringCollection.withElementName(
  1. String collectionItemXmlElementName
)
Creates a new instance of the Name of the collection item XML element.

Implementation

AttributedStringCollection.withElementName(
    String collectionItemXmlElementName)
    : super() {
  EwsUtilities.ValidateParam(
      collectionItemXmlElementName, "collectionItemXmlElementName");
  this._collectionItemXmlElementName = collectionItemXmlElementName;
}