Cloud Speech-to-Text v2 API - Class ServiceCollectionExtensions (1.2.0)

public static class ServiceCollectionExtensions

Reference documentation and code samples for the Cloud Speech-to-Text v2 API class ServiceCollectionExtensions.

Static class to provide extension methods to configure API clients.

Inheritance

object > ServiceCollectionExtensions

Namespace

Microsoft.Extensions.DependencyInjection

Assembly

Google.Cloud.Speech.V2.dll

Methods

AddSpeechClient(IServiceCollection, Action<SpeechClientBuilder>)

public static IServiceCollection AddSpeechClient(this IServiceCollection services, Action<SpeechClientBuilder> action = null)

Adds a singleton SpeechClient 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 ActionSpeechClientBuilder

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

Returns
Type Description
IServiceCollection

AddSpeechClient(IServiceCollection, Action<IServiceProvider, SpeechClientBuilder>)

public static IServiceCollection AddSpeechClient(this IServiceCollection services, Action<IServiceProvider, SpeechClientBuilder> action)

Adds a singleton SpeechClient 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 ActionIServiceProviderSpeechClientBuilder

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

Returns
Type Description
IServiceCollection