ServiceDescriptor.Transient Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Transient(Type, Func<IServiceProvider,Object>) |
Creates an instance of ServiceDescriptor with the specified
|
Transient(Type, Type) |
Creates an instance of ServiceDescriptor with the specified
|
Transient<TService,TImplementation>() |
Creates an instance of ServiceDescriptor with the specified
|
Transient<TService,TImplementation>(Func<IServiceProvider,TImplementation>) |
Creates an instance of ServiceDescriptor with the specified
|
Transient<TService>(Func<IServiceProvider,TService>) |
Creates an instance of ServiceDescriptor with the specified
|
Transient(Type, Func<IServiceProvider,Object>)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Creates an instance of ServiceDescriptor with the specified
service
, implementationFactory
,
and the Transient lifetime.
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
Parameters
- service
- Type
The type of the service.
- implementationFactory
- Func<IServiceProvider,Object>
A factory to create new instances of the service implementation.
Returns
A new instance of ServiceDescriptor.
Applies to
Transient(Type, Type)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Creates an instance of ServiceDescriptor with the specified
service
and implementationType
and the Transient lifetime.
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
Parameters
- service
- Type
The type of the service.
- implementationType
- Type
The type of the implementation.
Returns
A new instance of ServiceDescriptor.
Applies to
Transient<TService,TImplementation>()
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Creates an instance of ServiceDescriptor with the specified
TService
, TImplementation
,
and the Transient lifetime.
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
Type Parameters
- TService
The type of the service.
- TImplementation
The type of the implementation.
Returns
A new instance of ServiceDescriptor.
Applies to
Transient<TService,TImplementation>(Func<IServiceProvider,TImplementation>)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Creates an instance of ServiceDescriptor with the specified
TService
, TImplementation
,
implementationFactory
,
and the Transient lifetime.
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
Type Parameters
- TService
The type of the service.
- TImplementation
The type of the implementation.
Parameters
- implementationFactory
- Func<IServiceProvider,TImplementation>
A factory to create new instances of the service implementation.
Returns
A new instance of ServiceDescriptor.
Applies to
Transient<TService>(Func<IServiceProvider,TService>)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Creates an instance of ServiceDescriptor with the specified
TService
, implementationFactory
,
and the Transient lifetime.
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
Type Parameters
- TService
The type of the service.
Parameters
- implementationFactory
- Func<IServiceProvider,TService>
A factory to create new instances of the service implementation.
Returns
A new instance of ServiceDescriptor.