ContainedPropertyDefinition<TComplexProperty extends ComplexProperty>.withUriAndFlags constructor

ContainedPropertyDefinition<TComplexProperty extends ComplexProperty>.withUriAndFlags(
  1. String xmlElementName,
  2. String uri,
  3. String containedXmlElementName,
  4. List<PropertyDefinitionFlags> flags,
  5. ExchangeVersion version,
  6. ICreateComplexPropertyDelegate<TComplexProperty> propertyCreationDelegate,
)
Initializes a new instance of the Name of the XML element. The URI. Name of the contained XML element. The flags. The version. Delegate used to create instances of ComplexProperty.

Implementation

ContainedPropertyDefinition.withUriAndFlags(
    String xmlElementName,
    String uri,
    String containedXmlElementName,
    List<PropertyDefinitionFlags> flags,
    ExchangeVersion version,
    ICreateComplexPropertyDelegate<TComplexProperty> propertyCreationDelegate)
    : super.withUriAndFlags(
          xmlElementName, uri, flags, version, propertyCreationDelegate) {
  this.containedXmlElementName = containedXmlElementName;
}