ServiceDescriptor.KeyedScoped Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>) |
Tworzy wystąpienie klasy ServiceDescriptor z określonymi |
KeyedScoped(Type, Object, Type) |
Tworzy wystąpienie klasy ServiceDescriptor z określonym |
KeyedScoped<TService,TImplementation>(Object) |
Tworzy wystąpienie klasy ServiceDescriptor z określonymi |
KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>) |
Tworzy wystąpienie obiektu ServiceDescriptor o określonym |
KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>) |
Tworzy wystąpienie klasy ServiceDescriptor z określonymi |
KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>)
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
Tworzy wystąpienie klasy ServiceDescriptor z określonymi service
wartościami , implementationFactory
i okresem Scoped istnienia.
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 usługi.
- serviceKey
- Object
Usługa ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,Object>
Fabryka do tworzenia nowych wystąpień implementacji usługi.
Zwraca
Nowe wystąpienie elementu ServiceDescriptor.
Dotyczy
KeyedScoped(Type, Object, Type)
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
Tworzy wystąpienie klasy ServiceDescriptor z określonym service
i implementationType
okresem Scoped istnienia.
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 usługi.
- serviceKey
- Object
Usługa ServiceKey .
- implementationType
- Type
Typ implementacji.
Zwraca
Nowe wystąpienie elementu ServiceDescriptor.
Dotyczy
KeyedScoped<TService,TImplementation>(Object)
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
Tworzy wystąpienie klasy ServiceDescriptor z określonymi TService
wartościami , TImplementation
i okresem Scoped istnienia.
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 usługi.
- TImplementation
Typ implementacji.
Parametry
- serviceKey
- Object
Usługa ServiceKey .
Zwraca
Nowe wystąpienie elementu ServiceDescriptor.
Dotyczy
KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
Tworzy wystąpienie obiektu ServiceDescriptor o określonym TService
okresie istnienia , TImplementation
, implementationFactory
i 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 usługi.
- TImplementation
Typ implementacji.
Parametry
- serviceKey
- Object
Usługa ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,TImplementation>
Fabryka do tworzenia nowych wystąpień implementacji usługi.
Zwraca
Nowe wystąpienie elementu ServiceDescriptor.
Dotyczy
KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>)
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
- Źródło:
- ServiceDescriptor.cs
Tworzy wystąpienie klasy ServiceDescriptor z określonymi TService
wartościami , implementationFactory
i okresem Scoped istnienia.
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 usługi.
Parametry
- serviceKey
- Object
Usługa ServiceKey .
- implementationFactory
- Func<IServiceProvider,Object,TService>
Fabryka do tworzenia nowych wystąpień implementacji usługi.
Zwraca
Nowe wystąpienie elementu ServiceDescriptor.