PropertyDefinition.withFlags constructor

PropertyDefinition.withFlags(
  1. String xmlElementName,
  2. List<PropertyDefinitionFlags> flags,
  3. ExchangeVersion version
)
Initializes a new instance of the Name of the XML element. The flags. The version.

Implementation

PropertyDefinition.withFlags(String xmlElementName,
    List<PropertyDefinitionFlags> flags, ExchangeVersion version)
    : super() {
  this._xmlElementName = xmlElementName;
  this._flags = flags;
  this._version = version;
}