ServiceCollectionDescriptorExtensions.TryAddScoped 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TryAddScoped(IServiceCollection, Type) |
如果服务类型尚未注册,则将指定的 |
TryAddScoped(IServiceCollection, Type, Func<IServiceProvider,Object>) |
如果服务类型尚未注册,则使用 |
TryAddScoped(IServiceCollection, Type, Type) |
如果服务类型尚未注册,则使用 |
TryAddScoped<TService,TImplementation>(IServiceCollection) |
如果服务类型尚未注册,则将指定的 |
TryAddScoped<TService>(IServiceCollection) |
如果服务类型尚未注册,则将指定的 |
TryAddScoped<TService>(IServiceCollection, Func<IServiceProvider,TService>) |
如果服务类型尚未注册,则使用 |
TryAddScoped(IServiceCollection, Type)
如果服务类型尚未注册,则将指定的 service
作为 Scoped 服务添加到 collection
中。
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service);
public static void TryAddScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service);
static member TryAddScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type -> unit
<Extension()>
Public Sub TryAddScoped (collection As IServiceCollection, service As Type)
参数
- collection
- IServiceCollection
- service
- Type
要注册的服务类型。
适用于
TryAddScoped(IServiceCollection, Type, Func<IServiceProvider,Object>)
如果服务类型尚未注册,则使用 implementationFactory
中指定的中心将指定的 service
作为 Scoped 服务添加到 collection
中。
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, Func<IServiceProvider ^, System::Object ^> ^ implementationFactory);
public static void TryAddScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, Func<IServiceProvider,object> implementationFactory);
static member TryAddScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * Func<IServiceProvider, obj> -> unit
<Extension()>
Public Sub TryAddScoped (collection As IServiceCollection, service As Type, implementationFactory As Func(Of IServiceProvider, Object))
参数
- collection
- IServiceCollection
- service
- Type
要注册的服务类型。
- implementationFactory
- Func<IServiceProvider,Object>
用于创建服务的工厂。
适用于
TryAddScoped(IServiceCollection, Type, Type)
如果服务类型尚未注册,则使用 implementationType
实现将指定的 service
作为 Scoped 服务添加到 collection
中。
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, Type ^ implementationType);
public static void TryAddScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, Type implementationType);
static member TryAddScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * Type -> unit
<Extension()>
Public Sub TryAddScoped (collection As IServiceCollection, service As Type, implementationType As Type)
参数
- collection
- IServiceCollection
- service
- Type
要注册的服务类型。
- implementationType
- Type
服务的实现类型。
适用于
TryAddScoped<TService,TImplementation>(IServiceCollection)
如果服务类型尚未注册,则将指定的 TService
作为 TImplementation
中指定的 Scoped 服务实现类型添加到 collection
中。
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService[System::Runtime::CompilerServices::Extension]
static void TryAddScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection);
public static void TryAddScoped<TService,TImplementation> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class where TImplementation : class, TService;
static member TryAddScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddScoped(Of TService As Class, TImplementation As Class) (collection As IServiceCollection)
类型参数
- TService
要添加的服务类型。
- TImplementation
要使用的实现的类型。
参数
- collection
- IServiceCollection
适用于
TryAddScoped<TService>(IServiceCollection)
如果服务类型尚未注册,则将指定的 TService
作为 Scoped 服务添加到 collection
中。
public:
generic <typename TService>
where TService : class[System::Runtime::CompilerServices::Extension]
static void TryAddScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection);
public static void TryAddScoped<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class;
static member TryAddScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddScoped(Of TService As Class) (collection As IServiceCollection)
类型参数
- TService
要添加的服务类型。
参数
- collection
- IServiceCollection
适用于
TryAddScoped<TService>(IServiceCollection, Func<IServiceProvider,TService>)
如果服务类型尚未注册,则使用 implementationFactory
中指定的中心将指定的 TService
作为 Scoped 服务添加到 services
中。
public:
generic <typename TService>
where TService : class[System::Runtime::CompilerServices::Extension]
static void TryAddScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Func<IServiceProvider ^, TService> ^ implementationFactory);
public static void TryAddScoped<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Func<IServiceProvider,TService> implementationFactory) where TService : class;
static member TryAddScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Func<IServiceProvider, 'Service (requires 'Service : null)> -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddScoped(Of TService As Class) (services As IServiceCollection, implementationFactory As Func(Of IServiceProvider, TService))
类型参数
- TService
要添加的服务类型。
参数
- services
- IServiceCollection
- implementationFactory
- Func<IServiceProvider,TService>
用于创建服务的工厂。