GetItemResponse constructor

GetItemResponse(
  1. Item? item,
  2. PropertySet? propertySet
)
Initializes a new instance of the The item. The property set.

Implementation

GetItemResponse(serviceObjects.Item? item, PropertySet? propertySet)
    : super() {
  this._item = item;
  this._propertySet = propertySet;

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