Class ServiceDescriptor
Describes a registration of a concrete implementation for an service/abstraction.
Inheritance
Namespace: EPiServer.ServiceLocation
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public class ServiceDescriptor : Object
Constructors
ServiceDescriptor(Type, Func<IServiceLocator, Object>, ServiceInstanceScope)
Initializes a new instance of Servicefactory
.
Declaration
public ServiceDescriptor(Type serviceType, Func<IServiceLocator, object> factory, ServiceInstanceScope lifetime)
Parameters
Type | Name | Description |
---|---|---|
System. |
serviceType | The System. |
System. |
factory | A factory used for creating service instances. |
Service |
lifetime | The Service |
ServiceDescriptor(Type, Object)
Initializes a new instance of Serviceinstance
as a Singleton.
Declaration
public ServiceDescriptor(Type serviceType, object instance)
Parameters
Type | Name | Description |
---|---|---|
System. |
serviceType | The System. |
System. |
instance | The instance implementing the service. |
ServiceDescriptor(Type, Type, ServiceInstanceScope)
Initializes a new instance of ServiceimplementationType
.
Declaration
public ServiceDescriptor(Type serviceType, Type implementationType, ServiceInstanceScope lifetime)
Parameters
Type | Name | Description |
---|---|---|
System. |
serviceType | |
System. |
implementationType | |
Service |
lifetime |
Properties
ImplementationFactory
Declaration
public Func<IServiceLocator, object> ImplementationFactory { get; }
Property Value
Type | Description |
---|---|
System. |
ImplementationInstance
The implementation instance
Declaration
public object ImplementationInstance { get; }
Property Value
Type | Description |
---|---|
System. |
ImplementationType
The implementation type
Declaration
public Type ImplementationType { get; }
Property Value
Type | Description |
---|---|
System. |
IncludeServiceAccessor
Specifies if a ServiceAccessor<TService> should be added for the service.
Declaration
public bool IncludeServiceAccessor { get; set; }
Property Value
Type | Description |
---|---|
System. |
Lifetime
The lifecycle that the created instances should have
Declaration
public ServiceInstanceScope Lifetime { get; }
Property Value
Type | Description |
---|---|
Service |
ServiceType
The service type
Declaration
public Type ServiceType { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
AddServiceAccessor()
Adds a ServiceAccessor<TService> instance for the service.
Declaration
public ServiceDescriptor AddServiceAccessor()
Returns
Type | Description |
---|---|
Service |
The service descriptor instance |
Instance(Type, Object)
Creates a singleton lifecycled service descriptor for a service instance.
Declaration
public static ServiceDescriptor Instance(Type serviceType, object implementationInstance)
Parameters
Type | Name | Description |
---|---|---|
System. |
serviceType | The service type |
System. |
implementationInstance | The singleton instance |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Instance<TService>(TService)
Creates a singleton lifecycled service descriptor for a service instance.
Declaration
public static ServiceDescriptor Instance<TService>(TService implementationInstance)
where TService : class
Parameters
Type | Name | Description |
---|---|---|
TService | implementationInstance | The singleton instance |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
Scoped(Type, Func<IServiceLocator, Object>)
Creates a hybrid (httpcontext or thread local) lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Scoped(Type service, Func<IServiceLocator, object> implementationFactory)
Parameters
Type | Name | Description |
---|---|---|
System. |
service | The service type |
System. |
implementationFactory | The factory to use |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Scoped(Type, Type)
Creates a hybrid (httpcontext or thread local) lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Scoped(Type service, Type implementationType)
Parameters
Type | Name | Description |
---|---|---|
System. |
service | The service type |
System. |
implementationType | The implementation type |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Scoped<TService>(Func<IServiceLocator, TService>)
Creates a hybrid (httpcontext or thread local) lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Scoped<TService>(Func<IServiceLocator, TService> implementationFactory)
where TService : class
Parameters
Type | Name | Description |
---|---|---|
System. |
implementationFactory | The factory to use |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
Scoped<TService, TImplementation>()
Creates a hybrid (httpcontext or thread local) lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Scoped<TService, TImplementation>()
where TService : class where TImplementation : class, TService
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
TImplementation | The implementation type |
Scoped<TService, TImplementation>(Func<IServiceLocator, TImplementation>)
Creates a hybrid (httpcontext or thread local) lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Scoped<TService, TImplementation>(Func<IServiceLocator, TImplementation> implementationFactory)
where TService : class where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
System. |
implementationFactory | The factory to use |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
TImplementation | The implementation type |
Singleton(Type, Func<IServiceLocator, Object>)
Creates a singleton lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Singleton(Type serviceType, Func<IServiceLocator, object> implementationFactory)
Parameters
Type | Name | Description |
---|---|---|
System. |
serviceType | The service type |
System. |
implementationFactory | The factory |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Singleton(Type, Type)
Creates a singleton lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Singleton(Type service, Type implementationType)
Parameters
Type | Name | Description |
---|---|---|
System. |
service | The service type |
System. |
implementationType | The factory to use |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Singleton<TService>(Func<IServiceLocator, TService>)
Creates a singleton lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Singleton<TService>(Func<IServiceLocator, TService> implementationFactory)
where TService : class
Parameters
Type | Name | Description |
---|---|---|
System. |
implementationFactory | The factory |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
Singleton<TService, TImplementation>()
Creates a singleton lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Singleton<TService, TImplementation>()
where TService : class where TImplementation : class, TService
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
TImplementation | The factory to use |
Singleton<TService, TImplementation>(Func<IServiceLocator, TImplementation>)
Creates a singleton lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Singleton<TService, TImplementation>(Func<IServiceLocator, TImplementation> implementationFactory)
where TService : class where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
System. |
implementationFactory | The factory |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
TImplementation | The factory to use |
Transient(Type, Func<IServiceLocator, Object>)
Creates a transient lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Transient(Type service, Func<IServiceLocator, object> implementationFactory)
Parameters
Type | Name | Description |
---|---|---|
System. |
service | The service type |
System. |
implementationFactory | The factory |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Transient(Type, Type)
Creates a transient lifecycled service descriptor.
Declaration
public static ServiceDescriptor Transient(Type service, Type implementationType)
Parameters
Type | Name | Description |
---|---|---|
System. |
service | The service type |
System. |
implementationType | The implementation type |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Transient<TService>(Func<IServiceLocator, TService>)
Creates a transient lifecycled service descriptor for a service type.
Declaration
public static ServiceDescriptor Transient<TService>(Func<IServiceLocator, TService> implementationFactory)
where TService : class
Parameters
Type | Name | Description |
---|---|---|
System. |
implementationFactory | The factory |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
Transient<TService, TImplementation>()
Creates a transient lifecycled service descriptor.
Declaration
public static ServiceDescriptor Transient<TService, TImplementation>()
where TService : class where TImplementation : class, TService
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
TImplementation | The implementation type |
Transient<TService, TImplementation>(Func<IServiceLocator, TImplementation>)
Creates a transient lifecycled service descriptor.
Declaration
public static ServiceDescriptor Transient<TService, TImplementation>(Func<IServiceLocator, TImplementation> implementationFactory)
where TService : class where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
System. |
implementationFactory | The factory to use |
Returns
Type | Description |
---|---|
Service |
A service descriptor |
Type Parameters
Name | Description |
---|---|
TService | The service type |
TImplementation | The implementation type |