Index: Src/GoogleApis/Apis/Services/IClientService.cs =================================================================== --- a/Src/GoogleApis/Apis/Services/IClientService.cs +++ b/Src/GoogleApis/Apis/Services/IClientService.cs @@ -28,45 +28,45 @@ { /// /// Client service contains all the necessary information a Google service requires. - /// Each concrete has a reference to a service for + /// Each concrete has a reference to a service for /// important properties like API key, application name, base Uri, etc. /// This service interface also contains serialization methods to serialize an object to stream and deserialize a /// stream into an object. /// public interface IClientService : IDisposable { - /// Gets the Http client which is used to create requests. + /// Gets the HTTP client which is used to create requests. ConfigurableHttpClient HttpClient { get; } - /// - /// Gets an Http client initializer which is able to custom properties on + /// + /// Gets a HTTP client initializer which is able to custom properties on /// and /// . /// IConfigurableHttpClientInitializer HttpClientInitializer { get; } - /// Gets the service name. + /// Gets the service name. string Name { get; } - /// Gets the BaseUri of the service. All request paths should be relative to this URI. + /// Gets the BaseUri of the service. All request paths should be relative to this URI. string BaseUri { get; } - /// Gets the BasePath of the service. + /// Gets the BasePath of the service. string BasePath { get; } - /// Gets the Authenticator for this service. + /// Gets the Authenticator for this service. IAuthenticator Authenticator { get; } - /// Gets the supported features by this service. + /// Gets the supported features by this service. IList Features { get; } - /// Gets or sets whether this service supports GZip. + /// Gets or sets whether this service supports GZip. bool GZipEnabled { get; } - /// Gets the API-Key (DeveloperKey) which this service uses for all requests. + /// Gets the API-Key (DeveloperKey) which this service uses for all requests. string ApiKey { get; } - /// Gets the application name to be used in the User-Agent header. + /// Gets the application name to be used in the User-Agent header. string ApplicationName { get; } /// @@ -78,16 +78,16 @@ #region Serialization Methods - /// Gets the Serializer used by this service. + /// Gets the Serializer used by this service. ISerializer Serializer { get; } - /// Serializes an object into a string representation. + /// Serializes an object into a string representation. string SerializeObject(object data); - /// Deserializes a response into the specified object. + /// Deserializes a response into the specified object. Task DeserializeResponse(HttpResponseMessage response); - /// Deserializes an error response into a object. + /// Deserializes an error response into a object. /// If no error is found in the response. Task DeserializeError(HttpResponseMessage response);