CreateServiceResponse method

  1. @override
ServiceResponse CreateServiceResponse(
  1. ExchangeService service,
  2. int responseIndex
)
override
Creates the service response. The service. Index of the response.

Implementation

@override
ServiceResponse CreateServiceResponse(
    ExchangeService service, int responseIndex) {
  return new CreateItemResponse(
      EwsUtilities.GetEnumeratedObjectAt(this.Items!, responseIndex) as Item);
}