EngineAddService(Type, ServiceCreatorCallback, Boolean) Method |
Adds the specified service to the service container.
Namespace: Dundas.BIAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic override void AddService(
Type serviceType,
ServiceCreatorCallback callback,
bool promote
)
Public Overrides Sub AddService (
serviceType As Type,
callback As ServiceCreatorCallback,
promote As Boolean
)
public:
virtual void AddService(
Type^ serviceType,
ServiceCreatorCallback^ callback,
bool promote
) override
abstract AddService :
serviceType : Type *
callback : ServiceCreatorCallback *
promote : bool -> unit
override AddService :
serviceType : Type *
callback : ServiceCreatorCallback *
promote : bool -> unit Parameters
- serviceType Type
- The type of service to add.
- callback ServiceCreatorCallback
- A callback object that can create the service. This allows a service to be declared as available, but delays creation of the object until the service is requested.
- promote Boolean
- if this service should be added to any parent service containers; otherwise, .
Implements
IServiceContainerAddService(Type, ServiceCreatorCallback, Boolean)IServiceContainerAddService(Type, ServiceCreatorCallback, Boolean)
Exceptions
See Also