Service Control v1 API - Class ServiceCollectionExtensions (2.4.0)

public static class ServiceCollectionExtensions

Reference documentation and code samples for the Service Control v1 API class ServiceCollectionExtensions.

Static class to provide extension methods to configure API clients.

Inheritance

object > ServiceCollectionExtensions

Namespace

Microsoft.Extensions.DependencyInjection

Assembly

Google.Cloud.ServiceControl.V1.dll

Methods

AddQuotaControllerClient(IServiceCollection, Action<QuotaControllerClientBuilder>)

public static IServiceCollection AddQuotaControllerClient(this IServiceCollection services, Action<QuotaControllerClientBuilder> action = null)

Adds a singleton QuotaControllerClient to services.

Parameters
Name Description
services IServiceCollection

The service collection to add the client to. The services are used to configure the client when requested.

action ActionQuotaControllerClientBuilder

An optional action to invoke on the client builder. This is invoked before services from services are used.

Returns
Type Description
IServiceCollection

AddQuotaControllerClient(IServiceCollection, Action<IServiceProvider, QuotaControllerClientBuilder>)

public static IServiceCollection AddQuotaControllerClient(this IServiceCollection services, Action<IServiceProvider, QuotaControllerClientBuilder> action)

Adds a singleton QuotaControllerClient to services.

Parameters
Name Description
services IServiceCollection

The service collection to add the client to. The services are used to configure the client when requested.

action ActionIServiceProviderQuotaControllerClientBuilder

An optional action to invoke on the client builder. This is invoked before services from services are used.

Returns
Type Description
IServiceCollection

AddServiceControllerClient(IServiceCollection, Action<ServiceControllerClientBuilder>)

public static IServiceCollection AddServiceControllerClient(this IServiceCollection services, Action<ServiceControllerClientBuilder> action = null)

Adds a singleton ServiceControllerClient to services.

Parameters
Name Description
services IServiceCollection

The service collection to add the client to. The services are used to configure the client when requested.

action ActionServiceControllerClientBuilder

An optional action to invoke on the client builder. This is invoked before services from services are used.

Returns
Type Description
IServiceCollection

AddServiceControllerClient(IServiceCollection, Action<IServiceProvider, ServiceControllerClientBuilder>)

public static IServiceCollection AddServiceControllerClient(this IServiceCollection services, Action<IServiceProvider, ServiceControllerClientBuilder> action)

Adds a singleton ServiceControllerClient to services.

Parameters
Name Description
services IServiceCollection

The service collection to add the client to. The services are used to configure the client when requested.

action ActionIServiceProviderServiceControllerClientBuilder

An optional action to invoke on the client builder. This is invoked before services from services are used.

Returns
Type Description
IServiceCollection