IServiceProvider
Interface
A generic interface which provides information about the given service and the service itself.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
C#
public interface IServiceProvider
Methods
Gets a service if available.
C#
T GetService<T>() where T : class
T
The service.
Gets a value that indicates whether this provider has service of this type.
C#
bool HasService<T>() where T : class
True if such service is available, otherwise false.