Skip to main content
A newer version of this page is available. .

PrintingSystemBase.AddService(Type, ServiceCreatorCallback, Boolean) Method

Adds the specified service to the service container.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public void AddService(
    Type serviceType,
    ServiceCreatorCallback callback,
    bool promote
)

Parameters

Name Type Description
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

true if this service should be added to any parent service containers; otherwise, false.

Remarks

This method is intended for internal use only. Normally, you don’t need to use it.

See Also