IRadServiceProvider
Interface
Interface provides methods for registering and accessing RadService.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
C#
public interface IRadServiceProvider
Derived Classes:
Methods
Retrieves currently registered RadService by the specified type.
C#
T GetService<T>() where T : RadService
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)
An instance of type derived from RadService.