ServiceDescriptor.Transient 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í
Transient(Type, Func<IServiceProvider,Object>) |
Vytvoří instanci se ServiceDescriptor zadanými |
Transient(Type, Type) |
Vytvoří instanci se ServiceDescriptor zadanými |
Transient<TService,TImplementation>() |
Vytvoří instanci se ServiceDescriptor zadanými |
Transient<TService,TImplementation>(Func<IServiceProvider,TImplementation>) |
Vytvoří instanci se ServiceDescriptor zadanými |
Transient<TService>(Func<IServiceProvider,TService>) |
Vytvoří instanci se ServiceDescriptor zadanými |
Transient(Type, Func<IServiceProvider,Object>)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými service
, implementationFactory
a Transient životností.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Transient(Type ^ service, Func<IServiceProvider ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient (Type service, Func<IServiceProvider,object> implementationFactory);
static member Transient : Type * Func<IServiceProvider, obj> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function Transient (service As Type, implementationFactory As Func(Of IServiceProvider, Object)) As ServiceDescriptor
Parametry
- service
- Type
Typ služby.
- implementationFactory
- Func<IServiceProvider,Object>
Objekt pro vytváření nových instancí implementace služby.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
Transient(Type, Type)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými service
a implementationType
a životností Transient .
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Transient(Type ^ service, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient (Type service, Type implementationType);
static member Transient : Type * Type -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function Transient (service As Type, implementationType As Type) As ServiceDescriptor
Parametry
- service
- Type
Typ služby.
- implementationType
- Type
Typ implementace.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
Transient<TService,TImplementation>()
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými TService
, TImplementation
a Transient životností.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Transient();
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient<TService,TImplementation> () where TService : class where TImplementation : class, TService;
static member Transient : unit -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Transient(Of TService As Class, TImplementation As Class) () As ServiceDescriptor
Parametry typu
- TService
Typ služby.
- TImplementation
Typ implementace.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
Transient<TService,TImplementation>(Func<IServiceProvider,TImplementation>)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými TService
, TImplementation
, implementationFactory
a životností Transient .
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Transient(Func<IServiceProvider ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient<TService,TImplementation> (Func<IServiceProvider,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member Transient : Func<IServiceProvider, #'Service> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Transient(Of TService As Class, TImplementation As Class) (implementationFactory As Func(Of IServiceProvider, TImplementation)) As ServiceDescriptor
Parametry typu
- TService
Typ služby.
- TImplementation
Typ implementace.
Parametry
- implementationFactory
- Func<IServiceProvider,TImplementation>
Objekt pro vytváření nových instancí implementace služby.
Návraty
Nová instance objektu ServiceDescriptor.
Platí pro
Transient<TService>(Func<IServiceProvider,TService>)
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
- Zdroj:
- ServiceDescriptor.cs
Vytvoří instanci se ServiceDescriptor zadanými TService
, implementationFactory
a Transient životností.
public:
generic <typename TService>
where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ Transient(Func<IServiceProvider ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient<TService> (Func<IServiceProvider,TService> implementationFactory) where TService : class;
static member Transient : Func<IServiceProvider, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function Transient(Of TService As Class) (implementationFactory As Func(Of IServiceProvider, TService)) As ServiceDescriptor
Parametry typu
- TService
Typ služby.
Parametry
- implementationFactory
- Func<IServiceProvider,TService>
Objekt pro vytváření nových instancí implementace služby.
Návraty
Nová instance objektu ServiceDescriptor.