Class ServiceCollectionExtensions (2.0.0)

public static class ServiceCollectionExtensions

Static class to provide extension methods to configure API clients.

Inheritance

Object > ServiceCollectionExtensions

Namespace

Microsoft.Extensions.DependencyInjection

Assembly

Google.Cloud.Memcache.V1.dll

Methods

AddCloudMemcacheClient(IServiceCollection, Action<CloudMemcacheClientBuilder>)

public static IServiceCollection AddCloudMemcacheClient(this IServiceCollection services, Action<CloudMemcacheClientBuilder> action = null)

Adds a singleton CloudMemcacheClient to services.

Parameters
NameDescription
servicesIServiceCollection

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

actionAction<CloudMemcacheClientBuilder>

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

Returns
TypeDescription
IServiceCollection