Compartilhar via


ServiceCollectionMap.TryAddSingletonEnumerable Método

Definição

Sobrecargas

TryAddSingletonEnumerable(Type, Object)

Adiciona um Singleton serviço implementado pela instância determinada à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

TryAddSingletonEnumerable(Type, Type)

Adiciona um Singleton serviço implementado pelo tipo concreto fornecido à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

TryAddSingletonEnumerable<TService,TImplementation>()

Adiciona um Singleton serviço implementado pelo tipo concreto fornecido à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

TryAddSingletonEnumerable<TService,TImplementation>(Func<IServiceProvider,TImplementation>)

Adiciona um Singleton serviço implementado pela fábrica determinada à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

TryAddSingletonEnumerable<TService>(TService)

Adiciona um Singleton serviço implementado pela instância determinada à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

TryAddSingletonEnumerable(Type, Object)

Adiciona um Singleton serviço implementado pela instância determinada à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddSingletonEnumerable (Type serviceType, object implementation);
abstract member TryAddSingletonEnumerable : Type * obj -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
override this.TryAddSingletonEnumerable : Type * obj -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
Public Overridable Function TryAddSingletonEnumerable (serviceType As Type, implementation As Object) As ServiceCollectionMap

Parâmetros

serviceType
Type

O contrato do serviço.

implementation
Object

O objeto que implementa o serviço.

Retornos

O mapa, de modo que outras chamadas possam ser encadeadas.

Aplica-se a

TryAddSingletonEnumerable(Type, Type)

Adiciona um Singleton serviço implementado pelo tipo concreto fornecido à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddSingletonEnumerable (Type serviceType, Type implementationType);
abstract member TryAddSingletonEnumerable : Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
override this.TryAddSingletonEnumerable : Type * Type -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap
Public Overridable Function TryAddSingletonEnumerable (serviceType As Type, implementationType As Type) As ServiceCollectionMap

Parâmetros

serviceType
Type

O contrato do serviço.

implementationType
Type

O tipo concreto que implementa o serviço.

Retornos

O mapa, de modo que outras chamadas possam ser encadeadas.

Aplica-se a

TryAddSingletonEnumerable<TService,TImplementation>()

Adiciona um Singleton serviço implementado pelo tipo concreto fornecido à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddSingletonEnumerable<TService,TImplementation> () where TService : class where TImplementation : class, TService;
abstract member TryAddSingletonEnumerable : unit -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
override this.TryAddSingletonEnumerable : unit -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
Public Overridable Function TryAddSingletonEnumerable(Of TService As Class, TImplementation As Class) () As ServiceCollectionMap

Parâmetros de tipo

TService

O contrato do serviço.

TImplementation

O tipo concreto que implementa o serviço.

Retornos

O mapa, de modo que outras chamadas possam ser encadeadas.

Aplica-se a

TryAddSingletonEnumerable<TService,TImplementation>(Func<IServiceProvider,TImplementation>)

Adiciona um Singleton serviço implementado pela fábrica determinada à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddSingletonEnumerable<TService,TImplementation> (Func<IServiceProvider,TImplementation> factory) where TService : class where TImplementation : class, TService;
abstract member TryAddSingletonEnumerable : Func<IServiceProvider, #'Service> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
override this.TryAddSingletonEnumerable : Func<IServiceProvider, #'Service> -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
Public Overridable Function TryAddSingletonEnumerable(Of TService As Class, TImplementation As Class) (factory As Func(Of IServiceProvider, TImplementation)) As ServiceCollectionMap

Parâmetros de tipo

TService

O contrato do serviço.

TImplementation

O tipo concreto que implementa o serviço.

Parâmetros

factory
Func<IServiceProvider,TImplementation>

A fábrica que implementa esse serviço.

Retornos

O mapa, de modo que outras chamadas possam ser encadeadas.

Aplica-se a

TryAddSingletonEnumerable<TService>(TService)

Adiciona um Singleton serviço implementado pela instância determinada à lista de serviços que implementam o contrato especificado. O serviço só será adicionado se a coleção não contiver nenhum outro registro para o mesmo tipo de serviço e implementação.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap TryAddSingletonEnumerable<TService> (TService implementation) where TService : class;
abstract member TryAddSingletonEnumerable : 'Service -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
override this.TryAddSingletonEnumerable : 'Service -> Microsoft.EntityFrameworkCore.Infrastructure.ServiceCollectionMap (requires 'Service : null)
Public Overridable Function TryAddSingletonEnumerable(Of TService As Class) (implementation As TService) As ServiceCollectionMap

Parâmetros de tipo

TService

O contrato do serviço.

Parâmetros

implementation
TService

O objeto que implementa o serviço.

Retornos

O mapa, de modo que outras chamadas possam ser encadeadas.

Aplica-se a