ComplexPropertyDefinition<TComplexProperty extends ComplexProperty>.withUri constructor

ComplexPropertyDefinition<TComplexProperty extends ComplexProperty>.withUri(
  1. String xmlElementName,
  2. String uri,
  3. ExchangeVersion version,
  4. ICreateComplexPropertyDelegate<TComplexProperty> propertyCreationDelegate,
)
Initializes a new instance of the Name of the XML element. The URI. The version. Delegate used to create instances of ComplexProperty.

Implementation

ComplexPropertyDefinition.withUri(
    String xmlElementName,
    String uri,
    ExchangeVersion version,
    ICreateComplexPropertyDelegate<TComplexProperty> propertyCreationDelegate)
    : super.withUri(xmlElementName, uri, version) {
  this.propertyCreationDelegate = propertyCreationDelegate;
}