Skip to main content

SchedulerControl.RemoveService(Type) Method

Removes the service of specified type from the service container.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

public void RemoveService(
    Type serviceType
)

Parameters

Name Type Description
serviceType Type

The type of service to remove.

Remarks

The SchedulerControl implements IServiceProvider and IServiceContainer interfaces. In addition to providing services, it also provides a mechanism for adding and removing services. To obtain a service, call the SchedulerControl.GetService method.

For more information review the Introduction to Services in XtraScheduler topic.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RemoveService(Type) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also