public static class ClientServiceRequestExtensionsExtension methods for request objects.
Namespace
Google.Apis.RequestsAssembly
Google.Apis.dll
Methods
Configure<TRequest>(TRequest, Action<TRequest>)
public static TRequest Configure<TRequest>(this TRequest request, Action<TRequest> configurationAction)
where TRequest : ClientServiceRequestAllows a request to be configured in a fluent manner, where normally separate statements are required after the request creation method is called.
| Parameters | |
|---|---|
| Name | Description |
request |
TRequestThe request to configure. Must not be null. |
configurationAction |
Action<TRequest>The configuration action to apply to the request. This is typically setting properties. Must not be null. |
| Returns | |
|---|---|
| Type | Description |
TRequest |
The value of |
| Type Parameter | |
|---|---|
| Name | Description |
TRequest |
The type of the request to configure. |