Skip to main content

PrintingSystemBase.AddService(Type, ServiceCreatorCallback) Method

Adds the specified service to the service container.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

public void AddService(
    Type serviceType,
    ServiceCreatorCallback callback
)

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.

Remarks

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

See Also