Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(551)

Unified Diff: Src/GoogleApis/Apis/Requests/IClientServiceRequest.cs

Issue 13412046: Reimplement OAuth2 library - Step 1 (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: minor Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 @@
/// </summary>
public interface IClientServiceRequest<TResponse>
{
- /// <summary> Gets the service which is related to this request.</summary>
/// <summary>Gets the service which is related to this request.</summary>
IClientService Service { get; }
- /// <summary> Gets the name of the method to which this request belongs.</summary>
/// <summary>Gets the name of the method to which this request belongs.</summary>
string MethodName { get; }
- /// <summary> Gets the rest path of this request.</summary>
/// <summary>Gets the rest path of this request.</summary>
string RestPath { get; }
- /// <summary> Gets the Http method of this request.</summary>
/// <summary>Gets the HTTP method of this request.</summary>
string HttpMethod { get; }
- /// <summary> Gets the parameters information for this specific request.</summary>
/// <summary>Gets the parameters information for this specific request.</summary>
IDictionary<string, IParameter> RequestParameters { get; }
- /// <summary> Executes the request asynchronously and returns the result stream.</summary>
/// <summary>Executes the request asynchronously and returns the result stream.</summary>
Task<Stream> ExecuteAsStreamAsync();
- /// <summary> Executes the request asynchronously and returns the result stream.</summary>
- /// <param name="cencellationToken">A cancellation token for cancelling the request in the middle of the
/// <summary>Executes the request asynchronously and returns the result stream.</summary>
/// <param name="cencellationToken">A cancellation token for canceling the request in the middle of the
/// execution. operation.</param>
Task<Stream> ExecuteAsStreamAsync(CancellationToken cencellationToken);
- /// <summary> Executes the request and returns the result stream.</summary>
/// <summary>Executes the request and returns the result stream.</summary>
Stream ExecuteAsStream();
- /// <summary> Executes the request asynchronously and returns the result object.</summary>
/// <summary>Executes the request asynchronously and returns the result object.</summary>
Task<TResponse> ExecuteAsync();
- /// <summary> Executes the request asynchronously and returns the result object.</summary>
/// <summary>Executes the request asynchronously and returns the result object.</summary>
/// <param name="cencellationToken">A cancellation token for cancelling the request in the middle of execution.
/// </param>
Task<TResponse> ExecuteAsync(CancellationToken cencellationToken);
- /// <summary> Executes the request and returns the result object.</summary>
/// <summary>Executes the request and returns the result object.</summary>
TResponse Execute();
}
}

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b