IContainerBuilder.AddService Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AddService(ServiceLifetime, Type, Func<IServiceProvider,Object>) |
Aggiunge un servizio di |
AddService(ServiceLifetime, Type, Type) |
Aggiunge un servizio di |
AddService(ServiceLifetime, Type, Func<IServiceProvider,Object>)
Aggiunge un servizio di serviceType
con un implementationFactory
oggetto .
public Microsoft.OData.IContainerBuilder AddService (Microsoft.OData.ServiceLifetime lifetime, Type serviceType, Func<IServiceProvider,object> implementationFactory);
abstract member AddService : Microsoft.OData.ServiceLifetime * Type * Func<IServiceProvider, obj> -> Microsoft.OData.IContainerBuilder
Public Function AddService (lifetime As ServiceLifetime, serviceType As Type, implementationFactory As Func(Of IServiceProvider, Object)) As IContainerBuilder
Parametri
- lifetime
- ServiceLifetime
Durata del servizio da registrare.
- serviceType
- Type
Tipo di servizio da registrare.
- implementationFactory
- Func<IServiceProvider,Object>
Factory che crea il servizio.
Restituisce
IContainerBuilder Istanza stessa.
Si applica a
AddService(ServiceLifetime, Type, Type)
Aggiunge un servizio di serviceType
con un implementationType
oggetto .
public Microsoft.OData.IContainerBuilder AddService (Microsoft.OData.ServiceLifetime lifetime, Type serviceType, Type implementationType);
abstract member AddService : Microsoft.OData.ServiceLifetime * Type * Type -> Microsoft.OData.IContainerBuilder
Public Function AddService (lifetime As ServiceLifetime, serviceType As Type, implementationType As Type) As IContainerBuilder
Parametri
- lifetime
- ServiceLifetime
Durata del servizio da registrare.
- serviceType
- Type
Tipo di servizio da registrare.
- implementationType
- Type
Tipo di implementazione del servizio.
Restituisce
IContainerBuilder Istanza stessa.