GetItemResponse constructor
GetItemResponse(
- Item? item,
- PropertySet? propertySet
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");
}