ExtendedPropertyDefinition.withPropertySetIdAndName constructor

ExtendedPropertyDefinition.withPropertySetIdAndName(
  1. Uuid? _propertySetId,
  2. String? _name,
  3. MapiPropertyType? _mapiType
)
Initializes a new instance of the The property set Id of the extended property. The name of the extended property. The MAPI type of the extended property.

Implementation

ExtendedPropertyDefinition.withPropertySetIdAndName(
    this._propertySetId, this._name, this._mapiType) {
  EwsUtilities.ValidateParam(_name, "name");

  this._propertySetId = _propertySetId;
}