ServiceCollectionMap.TryAddSingletonEnumerable 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TryAddSingletonEnumerable(Type, Object) |
Singleton将给定实例实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。 |
TryAddSingletonEnumerable(Type, Type) |
Singleton将给定具体类型实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。 |
TryAddSingletonEnumerable<TService,TImplementation>() |
Singleton将给定具体类型实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。 |
TryAddSingletonEnumerable<TService,TImplementation>(Func<IServiceProvider,TImplementation>) |
Singleton将给定工厂实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。 |
TryAddSingletonEnumerable<TService>(TService) |
Singleton将给定实例实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。 |
TryAddSingletonEnumerable(Type, Object)
Singleton将给定实例实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。
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
参数
- serviceType
- Type
服务的协定。
- implementation
- Object
实现服务的对象。
返回
映射,以便可以链接进一步的调用。
适用于
TryAddSingletonEnumerable(Type, Type)
Singleton将给定具体类型实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。
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
参数
- serviceType
- Type
服务的协定。
- implementationType
- Type
实现服务的具体类型。
返回
映射,以便可以链接进一步的调用。
适用于
TryAddSingletonEnumerable<TService,TImplementation>()
Singleton将给定具体类型实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。
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
类型参数
- TService
服务的协定。
- TImplementation
实现服务的具体类型。
返回
映射,以便可以链接进一步的调用。
适用于
TryAddSingletonEnumerable<TService,TImplementation>(Func<IServiceProvider,TImplementation>)
Singleton将给定工厂实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。
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
类型参数
- TService
服务的协定。
- TImplementation
实现服务的具体类型。
参数
- factory
- Func<IServiceProvider,TImplementation>
实现此服务的工厂。
返回
映射,以便可以链接进一步的调用。
适用于
TryAddSingletonEnumerable<TService>(TService)
Singleton将给定实例实现的服务添加到实现给定协定的服务列表中。 仅当集合不包含同一服务和实现类型的其他注册时,才会添加该服务。
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
类型参数
- TService
服务的协定。
参数
- implementation
- TService
实现服务的对象。
返回
映射,以便可以链接进一步的调用。