ServiceDescriptor.KeyedScoped Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>) |
Belirtilen |
KeyedScoped(Type, Object, Type) |
Belirtilen |
KeyedScoped<TService,TImplementation>(Object) |
Belirtilen |
KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>) |
Belirtilen |
KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>) |
Belirtilen |
KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen service
, implementationFactory
ve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedScoped(Type ^ service, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped (Type service, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
static member KeyedScoped : Type * obj * Func<IServiceProvider, obj, obj> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedScoped (service As Type, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, Object)) As ServiceDescriptor
Parametreler
- service
- Type
Hizmetin türü.
- serviceKey
- Object
Hizmetin ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,Object>
Hizmet uygulamasının yeni örneklerini oluşturmak için bir fabrika.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
KeyedScoped(Type, Object, Type)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen service
ve implementationType
Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedScoped(Type ^ service, System::Object ^ serviceKey, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped (Type service, object? serviceKey, Type implementationType);
static member KeyedScoped : Type * obj * Type -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedScoped (service As Type, serviceKey As Object, implementationType As Type) As ServiceDescriptor
Parametreler
- service
- Type
Hizmetin türü.
- serviceKey
- Object
Hizmetin ServiceKey .
- implementationType
- Type
Uygulamanın türü.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
KeyedScoped<TService,TImplementation>(Object)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen TService
, TImplementation
ve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedScoped(System::Object ^ serviceKey);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped<TService,TImplementation> (object? serviceKey) where TService : class where TImplementation : class, TService;
static member KeyedScoped : obj -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedScoped(Of TService As Class, TImplementation As Class) (serviceKey As Object) As ServiceDescriptor
Tür Parametreleri
- TService
Hizmetin türü.
- TImplementation
Uygulamanın türü.
Parametreler
- serviceKey
- Object
Hizmetin ServiceKey .
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen TService
, , TImplementation
implementationFactory
ve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedScoped(System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped<TService,TImplementation> (object? serviceKey, Func<IServiceProvider,object?,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member KeyedScoped : obj * Func<IServiceProvider, obj, #'Service> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedScoped(Of TService As Class, TImplementation As Class) (serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TImplementation)) As ServiceDescriptor
Tür Parametreleri
- TService
Hizmetin türü.
- TImplementation
Uygulamanın türü.
Parametreler
- serviceKey
- Object
Hizmetin ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,TImplementation>
Hizmet uygulamasının yeni örneklerini oluşturmak için bir fabrika.
Döndürülenler
Yeni bir ServiceDescriptor örneği.
Şunlara uygulanır
KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>)
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
- Kaynak:
- ServiceDescriptor.cs
Belirtilen TService
, implementationFactory
ve Scoped yaşam süresi ile bir örneği ServiceDescriptor oluşturur.
public:
generic <typename TService>
where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedScoped(System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped<TService> (object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
static member KeyedScoped : obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedScoped(Of TService As Class) (serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TService)) As ServiceDescriptor
Tür Parametreleri
- TService
Hizmetin türü.
Parametreler
- serviceKey
- Object
Hizmetin ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,TService>
Hizmet uygulamasının yeni örneklerini oluşturmak için bir fabrika.
Döndürülenler
Yeni bir ServiceDescriptor örneği.