PropertyDefinition.withUri constructor

PropertyDefinition.withUri(
  1. String xmlElementName,
  2. String uri,
  3. ExchangeVersion version
)
Initializes a new instance of the Name of the XML element. The URI. The version.

Implementation

PropertyDefinition.withUri(
    String xmlElementName, String uri, ExchangeVersion version)
    : super.withUri(uri) {
  this._xmlElementName = xmlElementName;
  this._flags = [PropertyDefinitionFlags.None];
  this._version = version;
}