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

Unified Diff: Src/GoogleApis/Apis/Services/BaseClientService.cs

Issue 11347044: Issue 360: Fix a bug in ResumableUpload when media size is unknown (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: typo Created 11 years, 7 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
« no previous file with comments | « Src/GoogleApis.Tests/GoogleApis.Tests.csproj ('k') | Src/GoogleApis/Apis/[Media]/Upload/ResumableUpload.cs » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Src/GoogleApis/Apis/Services/BaseClientService.cs
===================================================================
--- a/Src/GoogleApis/Apis/Services/BaseClientService.cs
+++ b/Src/GoogleApis/Apis/Services/BaseClientService.cs
@@ -69,20 +69,20 @@
public class Initializer
{
/// <summary>
- /// A factory for creating <see cref="System.Net.Http.HttpClient"/> instance. If this property is not set
- /// the service uses a new <see cref="Google.Apis.Http.HttpClientFactory"/> instance.
+ /// Gets or sets the factory for creating <see cref="System.Net.Http.HttpClient"/> instance. If this
+ /// property is not set the service uses a new <see cref="Google.Apis.Http.HttpClientFactory"/> instance.
/// </summary>
public IHttpClientFactory HttpClientFactory { get; set; }
/// <summary>
- /// An Http client initializer which is able to customize properties on
+ /// Gets or sets an Http client initializer which is able to customize properties on
/// <see cref="Google.Apis.Http.ConfigurableHttpClient"/> and
/// <see cref="Google.Apis.Http.ConfigurableMessageHandler"/>.
/// </summary>
public IConfigurableHttpClientInitializer HttpClientInitializer { get; set; }
/// <summary>
- /// Get or sets the exponential back-off policy used by the service. Default value is <c>Exception</c> |
+ /// Gets or sets the exponential back-off policy used by the service. Default value is <c>Exception</c> |
/// <c>UnsuccessfulResponse5xx</c>, which means that exponential back-off is used on any 5xx abnormal Http
/// response and on any exception whose thrown when sending a request (except task canceled exception).
/// If the value is set to <c>None</c>, no exponential back-off policy is used, and it's up to user to
@@ -92,7 +92,7 @@
/// </summary>
public ExponentialBackOffPolicy DefaultExponentialBackOffPolicy { get; set; }
- /// <summary> Gets and Sets whether this service supports GZip. Default value is <c>true</c>. </summary>
+ /// <summary> Gets or sets whether this service supports GZip. Default value is <c>true</c>. </summary>
public bool GZipEnabled { get; set; }
/// <summary>
@@ -100,17 +100,17 @@
/// </summary>
public ISerializer Serializer { get; set; }
- /// <summary> Gets and Sets the API Key. Default value is <c>null</c>. </summary>
+ /// <summary> Gets or sets the API Key. Default value is <c>null</c>. </summary>
public string ApiKey { get; set; }
/// <summary>
- /// Gets and Sets the Authenticator. Default value is
+ /// Gets or sets the Authenticator. Default value is
/// <see cref="Google.Apis.Authentication.NullAuthenticator.Instance"/>.
/// </summary>
public IAuthenticator Authenticator { get; set; }
/// <summary>
- /// Gets and sets Application name to be used in the User-Agent header. Default value is <c>null</c>.
+ /// Gets or sets Application name to be used in the User-Agent header. Default value is <c>null</c>.
/// </summary>
public string ApplicationName { get; set; }
« no previous file with comments | « Src/GoogleApis.Tests/GoogleApis.Tests.csproj ('k') | Src/GoogleApis/Apis/[Media]/Upload/ResumableUpload.cs » ('j') | no next file with comments »

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