FindItemResponse<TItem extends Item> constructor

FindItemResponse<TItem extends Item>(
  1. bool isGrouped,
  2. PropertySet propertySet
)
Initializes a new instance of the if set to if grouped. The property set.

Implementation

FindItemResponse(bool isGrouped, PropertySet propertySet) : super() {
  this._isGrouped = isGrouped;
  this._propertySet = propertySet;

  EwsUtilities.Assert(this._propertySet != null, "FindItemResponse.ctor",
      "PropertySet should not be null");
}