InternalExecute method

Future<Object> InternalExecute()
Executes this request.

Implementation

Future<Object> InternalExecute() async {
//            IEwsHttpWebRequest request;
  IEwsHttpWebResponse response = await this.ValidateAndEmitRequest();

  Object responseObject = await this._ReadResponse(response);

  return responseObject;
}