Index: Src/GoogleApis/Apis/Http/IHttpClientFactory.cs =================================================================== --- a/Src/GoogleApis/Apis/Http/IHttpClientFactory.cs +++ b/Src/GoogleApis/Apis/Http/IHttpClientFactory.cs @@ -14,39 +14,35 @@ limitations under the License. */ -using System; using System.Collections.Generic; -using System.Linq; -using System.Net.Http; -using System.Text; namespace Google.Apis.Http { - /// Arguments for creating an Http client. + /// Arguments for creating a HTTP client. public class CreateHttpClientArgs { - /// Gets or sets whether GZip is enabled. + /// Gets or sets whether GZip is enabled. public bool GZipEnabled { get; set; } - /// Gets or sets the application name (It's used on the User-Agent header). + /// Gets or sets the application name (It's used on the User-Agent header). public string ApplicationName { get; set; } - /// Gets a list of initializers to initialize the Http client instance. + /// Gets a list of initializers to initialize the HTTP client instance. public IList Initializers { get; private set; } - /// Constructs a new argument instance. + /// Constructs a new argument instance. public CreateHttpClientArgs() { Initializers = new List(); } } - /// - /// Http client factory creates configurable Http clients. A unique Http client should be created for each service. + /// + /// HTTP client factory creates configurable HTTP clients. A unique HTTP client should be created for each service. /// public interface IHttpClientFactory { - /// Creates a new configurable Http client by the given arguments. + /// Creates a new configurable HTTP client by the given arguments. ConfigurableHttpClient CreateHttpClient(CreateHttpClientArgs args); } }