ServiceDescriptor.KeyedScoped Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>) |
Vytvoří instanci se ServiceDescriptor zadanými |
KeyedScoped(Type, Object, Type) |
Vytvoří instanci se ServiceDescriptor zadanými |
KeyedScoped<TService,TImplementation>(Object) |
Vytvoří instanci se ServiceDescriptor zadanými |
KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>) |
Vytvoří instanci se ServiceDescriptor zadanými |
KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>) |
Vytvoří instanci se ServiceDescriptor zadanými |
KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými service
, implementationFactory
a Scoped životností.
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
Parametry
- service
- Type
Typ služby.
- serviceKey
- Object
Služba ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,Object>
Objekt pro vytváření nových instancí implementace služby.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
KeyedScoped(Type, Object, Type)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými service
a implementationType
a životností Scoped .
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
Parametry
- service
- Type
Typ služby.
- serviceKey
- Object
Služba ServiceKey .
- implementationType
- Type
Typ implementace.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
KeyedScoped<TService,TImplementation>(Object)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými TService
, TImplementation
a Scoped životností.
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
Parametry typu
- TService
Typ služby.
- TImplementation
Typ implementace.
Parametry
- serviceKey
- Object
Služba ServiceKey .
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými TService
, TImplementation
, implementationFactory
a životností Scoped .
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
Parametry typu
- TService
Typ služby.
- TImplementation
Typ implementace.
Parametry
- serviceKey
- Object
Služba ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,TImplementation>
Objekt pro vytváření nových instancí implementace služby.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými TService
, implementationFactory
a Scoped životností.
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
Parametry typu
- TService
Typ služby.
Parametry
- serviceKey
- Object
Služba ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,TService>
Objekt pro vytváření nových instancí implementace služby.
Návraty
Nová instance objektu ServiceDescriptor.