Google.Apis.Core Defines the context in which this library runs. It allows setting up custom loggers. Returns the logger used within this application context. It creates a if no logger was registered previously Registers a logger with this application context. Thrown if a logger was already registered. An enumeration of all supported discovery versions. Discovery version 1.0. Specifies a list of features which can be defined within the discovery document of a service. If this feature is specified, then the data of a response is encapsulated within a "data" resource. Represents a parameter for a method. Gets the name of the parameter. Gets the pattern that this parameter must follow. Gets an indication whether this parameter is optional or required. Gets the default value of this parameter. Gets the type of the parameter. Represents a method's parameter. A thread-safe back-off handler which handles an abnormal HTTP response or an exception with . An initializer class to initialize a back-off handler. Gets the back-off policy used by this back-off handler. Gets or sets the maximum time span to wait. If the back-off instance returns a greater time span than this value, this handler returns false to both HandleExceptionAsync and HandleResponseAsync. Default value is 16 seconds per a retry request. Gets or sets a delegate function which indicates whether this back-off handler should handle an abnormal HTTP response. The default is . Gets or sets a delegate function which indicates whether this back-off handler should handle an exception. The default is . Default function which handles server errors (503). Default function which handles exception which aren't or . Those exceptions represent a task or an operation which was canceled and shouldn't be retried. Constructs a new initializer by the given back-off. Gets the back-off policy used by this back-off handler. Gets the maximum time span to wait. If the back-off instance returns a greater time span, the handle method returns false. Default value is 16 seconds per a retry request. Gets a delegate function which indicates whether this back-off handler should handle an abnormal HTTP response. The default is . Gets a delegate function which indicates whether this back-off handler should handle an exception. The default is . Constructs a new back-off handler with the given back-off. The back-off policy. Constructs a new back-off handler with the given initializer. Handles back-off. In case the request doesn't support retry or the back-off time span is greater than the maximum time span allowed for a request, the handler returns false. Otherwise the current thread will block for x milliseconds (x is defined by the instance), and this handler returns true. Waits the given time span. Overriding this method is recommended for mocking purposes. TimeSpan to wait (and block the current thread). The cancellation token in case the user wants to cancel the operation in the middle. Configurable HTTP client inherits from and contains a reference to . Gets the configurable message handler. Constructs a new HTTP client. This is equivalent to calling ConfigurableHttpClient(handler, true) Constructs a new HTTP client. The handler for this client to use. Whether the created should dispose of the internal message handler or not when it iself is disposed. A message handler which contains the main logic of our HTTP requests. It contains a list of s for handling abnormal responses, a list of s for handling exception in a request and a list of s for intercepting a request before it has been sent to the server. It also contains important properties like number of tries, follow redirect, etc. The class logger. Maximum allowed number of tries. Key for unsuccessful response handlers in an properties. Key for exception handlers in an properties. Key for execute handlers in an properties. Key for a stream response interceptor provider in an properties. Key for a credential in a properties. Key for request specific max retries. The current API version of this client library. The User-Agent suffix header which contains the . A list of . A list of . A list of . Gets a list of s. Since version 1.10, and were added in order to keep this class thread-safe. More information is available on #592. Adds the specified handler to the list of unsuccessful response handlers. Removes the specified handler from the list of unsuccessful response handlers. Gets a list of s. Since version 1.10, and were added in order to keep this class thread-safe. More information is available on #592. Adds the specified handler to the list of exception handlers. Removes the specified handler from the list of exception handlers. Gets a list of s. Since version 1.10, and were added in order to keep this class thread-safe. More information is available on #592. Adds the specified interceptor to the list of execute interceptors. Removes the specified interceptor from the list of execute interceptors. For testing only. This defaults to the static , but can be overridden for fine-grain testing. Number of tries. Default is 3. Gets or sets the number of tries that will be allowed to execute. Retries occur as a result of either or which handles the abnormal HTTP response or exception before being terminated. Set 1 for not retrying requests. The default value is 3. The number of allowed redirects (3xx) is defined by . This property defines only the allowed tries for >=400 responses, or when an exception is thrown. For example if you set to 1 and to 5, the library will send up to five redirect requests, but will not send any retry requests due to an error HTTP status code. Number of redirects allowed. Default is 10. Gets or sets the number of redirects that will be allowed to execute. The default value is 10. See for more information. Gets or sets whether the handler should follow a redirect when a redirect response is received. Default value is true. Gets or sets whether logging is enabled. Default value is true. Specifies the type(s) of request/response events to log. Log no request/response information. Log the request URI. Log the request headers. Log the request body. The body is assumed to be ASCII, and non-printable charaters are replaced by '.'. Warning: This causes the body content to be buffered in memory, so use with care for large requests. Log the response status. Log the response headers. Log the response body. The body is assumed to be ASCII, and non-printable characters are replaced by '.'. Warning: This causes the body content to be buffered in memory, so use with care for large responses. Log abnormal response messages. The request/response types to log. Gets or sets the application name which will be used on the User-Agent header. Gets or sets the value set for the x-goog-api-client header. The credential to apply to all requests made with this client, unless theres a specific call credential set. If implements then it will also be included as a handler of an unsuccessful response. Constructs a new configurable message handler. The main logic of sending a request to the server. This send method adds the User-Agent header to a request with and the library version. It also calls interceptors before each attempt, and unsuccessful response handler or exception handlers when abnormal response or exception occurred. Handles redirect if the response's status code is redirect, redirects are turned on, and the header has a location. When the status code is 303 the method on the request is changed to a GET as per the RFC2616 specification. On a redirect, it also removes the Authorization and all If-* request headers. Whether this method changed the request and handled redirect successfully. A delegate used to intercept stream data without modifying it. The parameters should always be validated before the delegate is called, so the delegate itself does not need to validate them again. The buffer containing the data. The offset into the buffer. The number of bytes being read/written. Indicates if exponential back-off is used automatically on exceptions in a service requests and \ or when 503 responses is returned form the server. Exponential back-off is disabled. Exponential back-off is enabled only for exceptions. Exponential back-off is enabled only for 503 HTTP Status code. An initializer which adds exponential back-off as exception handler and \ or unsuccessful response handler by the given . Gets or sets the used back-off policy. Gets or sets the back-off handler creation function. Constructs a new back-off initializer with the given policy and back-off handler create function. The default implementation of the HTTP client factory. Creates a new instance of that will set the given proxy on HTTP clients created by this factory. The proxy to set on HTTP clients created by this factory. May be null, in which case no proxy will be used. Creates a new instance of . Creates a new instance of that will set the given proxy on HTTP clients created by this factory. The proxy to set on HTTP clients created by this factory. May be null, in which case no proxy will be used. Gets the proxy to use when creating HTTP clients, if any. May be null, in which case, no proxy will be set for HTTP clients created by this factory. Creates a HTTP message handler. Override this method to mock a message handler. Creates a simple client handler with redirection and compression disabled. Create a for use when communicating with the server. Please read the remarks closely before overriding this method. When overriding this method, please observe the following: and of the returned instance are configured after this method returns. Configuring these within this method will have no effect. is set in this method to if value is not null. You may override that behaviour. Return a new instance of an for each call to this method. This method may be called once, or more than once, when initializing a single client service. A suitable . An implementation of that allows for the inner message handler to be injected. Factory for obtaining the underlying of the returned by . Won't be null. Creates an that will use the given factory for creating the inner message handlers that will be used when creating the . The obtained from the factory won't be disposed when the created is. This allows calling code to control the handlers' lifetime and so they can possibly be reused. This may be a requirement for using System.Net.Http.IHttpMessageHandler. See https://docs.microsoft.com/en-us/dotnet/architecture/microservices/implement-resilient-applications/use-httpclientfactory-to-implement-resilient-http-requests for information on why to use System.Net.Http.IHttpMessageHandler. Specifies the configuration options for a message handler. Whether the message handler built from these options may perform automatic decompression or not. If set to true, the message handler may or may not perform automatic decompression. If set to false, the message handler must not perform automatic decompression. Whether the message handler built from these options may handle redirects or not. Redirects that are not handled should bubble up the handlers chain. If set to true, the message handler may or may not handle redirects. If set to false, the message handler must not handle redirects. Represents the already configured to be used when building a by the factory and information about the actual configuration. The already configured to be used when building a by the factory. Whether is configured to perform automatic decompression or not. Whether is configured to handle redirects or not. Builds a new with the given parameters. HTTP constants. Http GET request Http DELETE request Http PUT request Http POST request Http PATCH request Extension methods to and . Returns true if the response contains one of the redirect status codes. A Google.Apis utility method for setting an empty HTTP content. HTTP client initializer for changing the default behavior of HTTP client. Use this initializer to change default values like timeout and number of tries. You can also set different handlers and interceptors like s, s and s. Initializes a HTTP client after it was created. Arguments for creating a HTTP client. Gets or sets whether GZip is enabled. Gets or sets the application name that is sent in the User-Agent header. Gets a list of initializers to initialize the HTTP client instance. Gets or sets the value for the x-goog-api-client header Constructs a new argument instance. HTTP client factory creates configurable HTTP clients. A unique HTTP client should be created for each service. Creates a new configurable HTTP client. Argument class to . Gets or sets the sent request. Gets or sets the exception which occurred during sending the request. Gets or sets the total number of tries to send the request. Gets or sets the current failed try. Gets an indication whether a retry will occur if the handler returns true. Gets or sets the request's cancellation token. Exception handler is invoked when an exception is thrown during a HTTP request. Handles an exception thrown when sending a HTTP request. A simple rule must be followed, if you modify the request object in a way that the exception can be resolved, you must return true. Handle exception argument which properties such as the request, exception, current failed try. Whether this handler has made a change that requires the request to be resent. HTTP request execute interceptor to intercept a before it has been sent. Sample usage is attaching "Authorization" header to a request. Invoked before the request is being sent. The HTTP request message. Cancellation token to cancel the operation. Argument class to . Gets or sets the sent request. Gets or sets the abnormal response. Gets or sets the total number of tries to send the request. Gets or sets the current failed try. Gets an indication whether a retry will occur if the handler returns true. Gets or sets the request's cancellation token. Unsuccessful response handler which is invoked when an abnormal HTTP response is returned when sending a HTTP request. Handles an abnormal response when sending a HTTP request. A simple rule must be followed, if you modify the request object in a way that the abnormal response can be resolved, you must return true. Handle response argument which contains properties such as the request, response, current failed try. Whether this handler has made a change that requires the request to be resent. Intercepts HTTP GET requests with a URLs longer than a specified maximum number of characters. The interceptor will change such requests as follows: The request's method will be changed to POST A X-HTTP-Method-Override header will be added with the value GET Any query parameters from the URI will be moved into the body of the request. If query parameters are moved, the content type is set to application/x-www-form-urlencoded Constructs a new Max URL length interceptor with the given max length. An HttpMessageHandler that (conditionally) intercepts response streams, allowing inline stream processing. An interceptor provider function is fetched from each request via the property; if the property is not present on the request (or is null), the response will definitely not be intercepted. If the property is present and non-null, the interceptor provider is called for the response. This may return a null reference, indicating that interception isn't required, and the response can be returned as-is. Otherwise, we use a with an intercepting stream which passes all data read to the interceptor. For each request, check whether we An HttpMessageHandler that delegates to one of two inner handlers based on a condition checked on each request. Handler to wrap another, just so that we can effectively expose its SendAsync method. An HttpMessageHandler that performs decompression for Deflate and Gzip content. An HttpContent based on an existing one, but allowing the stream to be replaced. This is similar to StreamContent, but it defers the stream creation until it's requested by the client. (An alternative would be to use StreamContent with a custom stream that only retrieved the stream when first used.) Headers are copied from the original content. Serialization interface that supports serialize and deserialize methods. Gets the application format this serializer supports (e.g. "json", "xml", etc.). Serializes the specified object into a Stream. Serializes the specified object into a string. Deserializes the string into an object. Deserializes the string into an object. Deserializes the stream into an object. Represents a JSON serializer. Provides values which are explicitly expressed as null when converted to JSON. Get an that is explicitly expressed as null when converted to JSON. An that is explicitly expressed as null when converted to JSON. All values of a type with this attribute are represented as a literal null in JSON. A JSON converter which honers RFC 3339 and the serialized date is accepted by Google services. A JSON converter to write null literals into JSON when explicitly requested. A JSON contract resolver to apply and as necessary. Using a contract resolver is recommended in the Json.NET performance tips: https://www.newtonsoft.com/json/help/html/Performance.htm#JsonConverters Class for serialization and deserialization of JSON documents using the Newtonsoft Library. The default instance of the Newtonsoft JSON Serializer, with default settings. Constructs a new instance with the default serialization settings, equivalent to . Constructs a new instance with the given settings. The settings to apply when serializing and deserializing. Must not be null. Creates a new instance of with the same behavior as the ones used in . This method is expected to be used to construct settings which are then passed to . A new set of default settings. Deserializes the given stream but reads from it asynchronously, observing the given cancellation token. Note that this means the complete JSON is read before it is deserialized into objects. The type to convert to. The stream to read from. Cancellation token for the operation. The deserialized object. An abstract base logger, upon which real loggers may be built. Construct a . Logging will be enabled at this level and all higher levels. The to use to timestamp log entries. The type from which entries are being logged. May be null. The being used to timestamp log entries. The type from which entries are being logged. May be null. Logging is enabled at this level and all higher levels. Is Debug level logging enabled? Is info level logging enabled? Is warning level logging enabled? Is error level logging enabled? Build a new logger of the derived concrete type, for use to log from the specified type. The type from which entries are being logged. A new instance, logging from the specified type. Perform the actual logging. The of this log entry. The fully formatted log message, ready for logging. A logger than logs to StdError or StdOut. Construct a . Logging will be enabled at this level and all higher levels. true to log to StdOut, defaults to logging to StdError. Optional ; will use the system clock if null. false to log to StdError; true to log to StdOut. Describes a logging interface which is used for outputting messages. Gets an indication whether debug output is logged or not. Returns a logger which will be associated with the specified type. Type to which this logger belongs. A type-associated logger. Returns a logger which will be associated with the specified type. A type-associated logger. Logs a debug message. The message to log. String.Format arguments (if applicable). Logs an info message. The message to log. String.Format arguments (if applicable). Logs a warning. The message to log. String.Format arguments (if applicable). Logs an error message resulting from an exception. The message to log. String.Format arguments (if applicable). Logs an error message. The message to log. String.Format arguments (if applicable). The supported logging levels. A value lower than all logging levels. Debug logging. Info logging. Warning logging. Error logging. A value higher than all logging levels. A logger than logs to an in-memory buffer. Generally for use during tests. Construct a . Logging will be enabled at this level and all higher levels. The maximum number of log entries. Further log entries will be silently discarded. Optional ; will use the system clock if null. The list of log entries. Represents a NullLogger which does not do any logging. A collection of parameters (key value pairs). May contain duplicate keys. Constructs a new parameter collection. Constructs a new parameter collection from the given collection. Adds a single parameter to this collection. Returns true if this parameter is set within the collection. Tries to find the a key within the specified key value collection. Returns true if the key was found. If a pair was found the out parameter value will contain the value of that pair. Returns the value of the first matching key, or throws a KeyNotFoundException if the parameter is not present within the collection. Returns all matches for the specified key. May return an empty enumeration if the key is not present. Returns all matches for the specified key. May return an empty enumeration if the key is not present. Creates a parameter collection from the specified URL encoded query string. Example: The query string "foo=bar&chocolate=cookie" would result in two parameters (foo and bar) with the values "bar" and "cookie" set. Creates a parameter collection from the specified dictionary. If the value is an enumerable, a parameter pair will be added for each value. Otherwise the value will be converted into a string using the .ToString() method. Utility class for iterating on properties in a request object. Creates a with all the specified parameters in the input request. It uses reflection to iterate over all properties with attribute. A request object which contains properties with attribute. Those properties will be serialized to the returned . A which contains the all the given object required values. Creates a parameter dictionary by using reflection to iterate over all properties with attribute. A request object which contains properties with attribute. Those properties will be set in the output dictionary. Sets query parameters in the given builder with all all properties with the attribute. The request builder A request object which contains properties with attribute. Those properties will be set in the given request builder object Iterates over all properties in the request object and invokes the specified action for each of them. A request object An action to invoke which gets the parameter type, name and its value Logic for validating a parameter. Validates a parameter value against the methods regex. Validates a parameter value against the methods regex. Validates if a parameter is valid. Validates if a parameter is valid. Utility class for building a URI using or a HTTP request using from the query and path parameters of a REST call. Pattern to get the groups that are part of the path. Supported HTTP methods. A dictionary containing the parameters which will be inserted into the path of the URI. These parameters will be substituted into the URI path where the path contains "{key}". See http://tools.ietf.org/html/rfc6570 for more information. A dictionary containing the parameters which will apply to the query portion of this request. The base URI for this request (usually applies to the service itself). The path portion of this request. It's appended to the and the parameters are substituted from the dictionary. The HTTP method used for this request. The HTTP method used for this request (such as GET, PUT, POST, etc...). The default Value is . Construct a new request builder. TODO(peleyal): Consider using the Factory pattern here. Constructs a Uri as defined by the parts of this request builder. Operator list that can appear in the path argument. Builds the REST path string builder based on and the URI template spec http://tools.ietf.org/html/rfc6570. Adds a parameter value. Type of the parameter (must be 'Path' or 'Query'). Parameter name. Parameter value. Creates a new HTTP request message. Collection of server errors Enumeration of known error codes which may occur during a request. The ETag condition specified caused the ETag verification to fail. Depending on the ETagAction of the request this either means that a change to the object has been made on the server, or that the object in question is still the same and has not been changed. Contains a list of all errors The error code returned The error message returned The full content of the error response that this instance was created from. The response may contain custom information that is not represented by any of the properties in . Returns a string summary of this error A string summary of this error A single server error The domain in which the error occured The reason the error was thrown The error message Type of the location Location where the error was thrown Returns a string summary of this error A string summary of this error Marker Attribute to indicate a Method/Class/Property has been made more visible for purpose of testing. Mark the member as internal and make the testing assembly a friend using [assembly: InternalsVisibleTo("Full.Name.Of.Testing.Assembly")] Implementation of that increases the back-off period for each retry attempt using a randomization function that grows exponentially. In addition, it also adds a randomize number of milliseconds for each attempt. The maximum allowed number of retries. Gets the delta time span used to generate a random milliseconds to add to the next back-off. If the value is then the generated back-off will be exactly 1, 2, 4, 8, 16, etc. seconds. A valid value is between zero and one second. The default value is 250ms, which means that the generated back-off will be [0.75-1.25]sec, [1.75-2.25]sec, [3.75-4.25]sec, and so on. Gets the maximum number of retries. Default value is 10. The random instance which generates a random number to add the to next back-off. Constructs a new exponential back-off with default values. Constructs a new exponential back-off with the given delta and maximum retries. Strategy interface to control back-off between retry attempts. Gets the a time span to wait before next retry. If the current retry reached the maximum number of retries, the returned value is . Gets the maximum number of retries. Clock wrapper for getting the current time. Gets a object that is set to the current date and time on this computer, expressed as the local time. Gets a object that is set to the current date and time on this computer, expressed as UTC time. A default clock implementation that wraps the and properties. Constructs a new system clock. The default instance. Repeatable class which allows you to both pass a single element, as well as an array, as a parameter value. Creates a repeatable value. Converts the single element into a repeatable. Converts a number of elements into a repeatable. Converts a number of elements into a repeatable. An attribute which is used to specially mark a property for reflective purposes, assign a name to the property and indicate it's location in the request as either in the path or query portion of the request URL. Gets the name of the parameter. Gets the type of the parameter, Path or Query. Constructs a new property attribute to be a part of a REST URI. This constructor uses as the parameter's type. The name of the parameter. If the parameter is a path parameter this name will be used to substitute the string value into the path, replacing {name}. If the parameter is a query parameter, this parameter will be added to the query string, in the format "name=value". Constructs a new property attribute to be a part of a REST URI. The name of the parameter. If the parameter is a path parameter this name will be used to substitute the string value into the path, replacing {name}. If the parameter is a query parameter, this parameter will be added to the query string, in the format "name=value". The type of the parameter, either Path, Query or UserDefinedQueries. Describe the type of this parameter (Path, Query or UserDefinedQueries). A path parameter which is inserted into the path portion of the request URI. A query parameter which is inserted into the query portion of the request URI. A group of user-defined parameters that will be added in to the query portion of the request URI. If this type is being used, the name of the RequestParameterAttirbute is meaningless. Calls to Google Api return StandardResponses as Json with two properties Data, being the return type of the method called and Error, being any errors that occure. May be null if call failed. May be null if call succedded. Stores and manages data objects, where the key is a string and the value is an object. null keys are not allowed. Asynchronously stores the given value for the given key (replacing any existing value). The type to store in the data store. The key. The value to store. Asynchronously deletes the given key. The type is provided here as well because the "real" saved key should contain type information as well, so the data store will be able to store the same key for different types. The type to delete from the data store. The key to delete. Asynchronously returns the stored value for the given key or null if not found. The type to retrieve from the data store. The key to retrieve its value. The stored object. Asynchronously clears all values in the data store. Defines an attribute containing a string representation of the member. The text which belongs to this member. Creates a new string value attribute with the specified text. Returns a task which can be cancelled by the given cancellation token, but otherwise observes the original task's state. This does *not* cancel any work that the original task was doing, and should be used carefully. Workarounds for some unfortunate behaviors in the .NET Framework's implementation of System.Uri UriPatcher lets us work around some unfortunate behaviors in the .NET Framework's implementation of System.Uri. == Problem 1: Slashes and dots Prior to .NET 4.5, System.Uri would always unescape "%2f" ("/") and "%5c" ("\\"). Relative path components were also compressed. As a result, this: "http://www.example.com/.%2f.%5c./" ... turned into this: "http://www.example.com/" This breaks API requests where slashes or dots appear in path parameters. Such requests arise, for example, when these characters appear in the name of a GCS object. == Problem 2: Fewer unreserved characters Unless IDN/IRI parsing is enabled -- which it is not, by default, prior to .NET 4.5 -- Uri.EscapeDataString uses the set of "unreserved" characters from RFC 2396 instead of the newer, *smaller* list from RFC 3986. We build requests using URI templating as described by RFC 6570, which specifies that the latter definition (RFC 3986) should be used. This breaks API requests with parameters including any of: !*'() == Solutions Though the default behaviors changed in .NET 4.5, these "quirks" remain for compatibility unless the application explicitly targets the new runtime. Usually, that means adding a TargetFrameworkAttribute to the entry assembly. Applications running on .NET 4.0 or later can also set "DontUnescapePathDotsAndSlashes" and enable IDN/IRI parsing using app.config or web.config. As a class library, we can't control app.config or the entry assembly, so we can't take either approach. Instead, we resort to reflection trickery to try to solve these problems if we detect they exist. Sorry. Patch URI quirks in System.Uri. See class summary for details. A utility class which contains helper methods and extension methods. Returns the version of the core library. A Google.Apis utility method for throwing an if the object is null. A Google.Apis utility method for throwing an if the string is null or empty. The original string. Returns true in case the enumerable is null or empty. Checks that the given value is in fact defined in the enum used as the type argument of the method. The enum type to check the value within. The value to check. The name of the parameter whose value is being tested. if it was a defined value Checks that given argument-based condition is met, throwing an otherwise. The (already evaluated) condition to check. The name of the parameter whose value is being tested. The format string to use to create the exception message if the condition is not met. The first argument to the format string. The second argument to the format string. A Google.Apis utility method for returning the first matching custom attribute (or null) of the specified member. Returns the defined string value of an Enum. Returns the defined string value of an Enum. Use for test purposes or in other Google.Apis projects. Tries to convert the specified object to a string. Uses custom type converters if available. Returns null for a null object. Converts the input date into a RFC3339 string (http://www.ietf.org/rfc/rfc3339.txt). Parses the input string and returns if the input is a valid representation of a date. Otherwise it returns null. Returns a string (by RFC3339) form the input instance. Represents an exception thrown by an API Service. Gets the service name which related to this exception. Creates an API Service exception. Creates an API Service exception. Creates an API Service exception with no message. may still contain useful information if the and/or properties are set. The Error which was returned from the server, or null if unavailable. The HTTP status code which was returned along with this error, or 0 if unavailable. Returns a summary of this exception. A summary of this exception.