Index: Src/GoogleApis/Apis/Requests/IClientServiceRequest.cs =================================================================== --- a/Src/GoogleApis/Apis/Requests/IClientServiceRequest.cs +++ b/Src/GoogleApis/Apis/Requests/IClientServiceRequest.cs @@ -31,41 +31,41 @@ /// public interface IClientServiceRequest { - /// Gets the service which is related to this request. + /// Gets the service which is related to this request. IClientService Service { get; } - /// Gets the name of the method to which this request belongs. + /// Gets the name of the method to which this request belongs. string MethodName { get; } - /// Gets the rest path of this request. + /// Gets the rest path of this request. string RestPath { get; } - /// Gets the Http method of this request. + /// Gets the HTTP method of this request. string HttpMethod { get; } - /// Gets the parameters information for this specific request. + /// Gets the parameters information for this specific request. IDictionary RequestParameters { get; } - /// Executes the request asynchronously and returns the result stream. + /// Executes the request asynchronously and returns the result stream. Task ExecuteAsStreamAsync(); - /// Executes the request asynchronously and returns the result stream. - /// A cancellation token for cancelling the request in the middle of the + /// Executes the request asynchronously and returns the result stream. + /// A cancellation token for canceling the request in the middle of the /// execution. operation. Task ExecuteAsStreamAsync(CancellationToken cencellationToken); - /// Executes the request and returns the result stream. + /// Executes the request and returns the result stream. Stream ExecuteAsStream(); - /// Executes the request asynchronously and returns the result object. + /// Executes the request asynchronously and returns the result object. Task ExecuteAsync(); - /// Executes the request asynchronously and returns the result object. + /// Executes the request asynchronously and returns the result object. /// A cancellation token for cancelling the request in the middle of execution. /// Task ExecuteAsync(CancellationToken cencellationToken); - /// Executes the request and returns the result object. + /// Executes the request and returns the result object. TResponse Execute(); } }