New to Telerik UI for WinFormsStart a free 30-day trial

Interface provides methods for registering and accessing RadService.

Definition

Namespace:Telerik.WinControls

Assembly:Telerik.WinControls.dll

Syntax:

C#
public interface IRadServiceProvider

Derived Classes: GroupPanelElementRadGridViewElement

Methods

Retrieves currently registered RadService by the specified type.

C#
T GetService<T>() where T : RadService
Returns:

T

The registered service instance of type T, or null if no service of the specified type is registered.

Registers the specified service with ourselves.

C#
void RegisterService(RadService service)
Parameters:serviceRadService

An instance of type derived from RadService.