ServiceDescriptor.Scoped Metod

Definition

Överlagringar

Name Description
Scoped(Type, Func<IServiceProvider,Object>)

Skapar en instans av ServiceDescriptor med angiven service, implementationFactoryoch livslängd.Scoped

Scoped(Type, Type)

Skapar en instans av ServiceDescriptor med angiven service och implementationType och livslängd.Scoped

Scoped<TService,TImplementation>(Func<IServiceProvider,TImplementation>)

Skapar en instans av ServiceDescriptor med angiven TService, TImplementation, implementationFactoryoch Scoped livslängd.

Scoped<TService,TImplementation>()

Skapar en instans av ServiceDescriptor med angiven TService, TImplementationoch livslängd.Scoped

Scoped<TService>(Func<IServiceProvider,TService>)

Skapar en instans av ServiceDescriptor med angiven TService, implementationFactoryoch livslängd.Scoped

Scoped(Type, Func<IServiceProvider,Object>)

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven service, implementationFactoryoch livslängd.Scoped

public:
 static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Type ^ service, Func<IServiceProvider ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped(Type service, Func<IServiceProvider,object> implementationFactory);
static member Scoped : Type * Func<IServiceProvider, obj> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function Scoped (service As Type, implementationFactory As Func(Of IServiceProvider, Object)) As ServiceDescriptor

Parametrar

service
Type

Typ av tjänst.

implementationFactory
Func<IServiceProvider,Object>

En fabrik för att skapa nya instanser av tjänstimplementeringen.

Returer

En ny instans av ServiceDescriptor.

Gäller för

Scoped(Type, Type)

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven service och implementationType och livslängd.Scoped

public:
 static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Type ^ service, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped(Type service, Type implementationType);
static member Scoped : Type * Type -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function Scoped (service As Type, implementationType As Type) As ServiceDescriptor

Parametrar

service
Type

Typ av tjänst.

implementationType
Type

Typen av implementering.

Returer

En ny instans av ServiceDescriptor.

Gäller för

Scoped<TService,TImplementation>(Func<IServiceProvider,TImplementation>)

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven TService, TImplementation, implementationFactoryoch Scoped livslängd.

public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Func<IServiceProvider ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService,TImplementation>(Func<IServiceProvider,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member Scoped : Func<IServiceProvider, #'Service> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Scoped(Of TService As Class, TImplementation As Class) (implementationFactory As Func(Of IServiceProvider, TImplementation)) As ServiceDescriptor

Typparametrar

TService

Typ av tjänst.

TImplementation

Typen av implementering.

Parametrar

implementationFactory
Func<IServiceProvider,TImplementation>

En fabrik för att skapa nya instanser av tjänstimplementeringen.

Returer

En ny instans av ServiceDescriptor.

Gäller för

Scoped<TService,TImplementation>()

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven TService, TImplementationoch livslängd.Scoped

public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped();
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService,TImplementation>() where TService : class where TImplementation : class, TService;
static member Scoped : unit -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Scoped(Of TService As Class, TImplementation As Class) () As ServiceDescriptor

Typparametrar

TService

Typ av tjänst.

TImplementation

Typen av implementering.

Returer

En ny instans av ServiceDescriptor.

Gäller för

Scoped<TService>(Func<IServiceProvider,TService>)

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven TService, implementationFactoryoch livslängd.Scoped

public:
generic <typename TService>
 where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Scoped(Func<IServiceProvider ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService>(Func<IServiceProvider,TService> implementationFactory) where TService : class;
static member Scoped : Func<IServiceProvider, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Scoped(Of TService As Class) (implementationFactory As Func(Of IServiceProvider, TService)) As ServiceDescriptor

Typparametrar

TService

Typ av tjänst.

Parametrar

implementationFactory
Func<IServiceProvider,TService>

En fabrik för att skapa nya instanser av tjänstimplementeringen.

Returer

En ny instans av ServiceDescriptor.

Gäller för