/// <summary>
 /// Execute this request, resulting in a <see cref="IClientHttpResponse" /> that can be read.
 /// </summary>
 /// <returns>The response result of the execution</returns>
 public IClientHttpResponse Execute()
 {
     RequestSyncExecution requestSyncExecution = new RequestSyncExecution(this.delegateRequest, this.body, this.interceptors);
     return requestSyncExecution.Execute();
 }
 public IClientHttpResponse Execute()
 {
     RequestSyncExecution execution = new RequestSyncExecution(this.targetRequest, this.body, this.interceptors);
     return execution.Execute();
 }
        /// <summary>
        /// Execute this request, resulting in a <see cref="IClientHttpResponse" /> that can be read.
        /// </summary>
        /// <returns>The response result of the execution</returns>
        public IClientHttpResponse Execute()
        {
            RequestSyncExecution requestSyncExecution = new RequestSyncExecution(this.targetRequest, this.body, this.interceptors);

            return(requestSyncExecution.Execute());
        }