Skip to main content

SchedulerControl.GetService<T>() Method

Gets the service object of the specified generic type.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public virtual T GetService<T>()

#Type Parameters

Name
T

#Returns

Type Description
T

A service object of the specified generic type, or a null reference (Nothing in Visual Basic) if there is no service object of this type.

#Remarks

Use the GetService<T> method to enable your application objects to obtain a service of the SchedulerControl in order to employ its methods. The scheduler implements the IServiceProvider interface, so you can tell it what type of service you wish to retrive via the GetService<T> method; and if a service is available, it is offered to the caller object.

There is a set of predefined services you can retrieve. The IServiceProvider and IServiceContainer interface realization allows hiding implementation details, and gives more flexibility regarding future updates of the component.

See Also