mscorlib(4.0.0.0) API with additions
IServiceProvider.cs
1 namespace System
2 {
4  [__DynamicallyInvokable]
5  public interface IServiceProvider
6  {
11  [__DynamicallyInvokable]
12  object GetService(Type serviceType);
13  }
14 }
object GetService(Type serviceType)
Gets the service object of the specified type.
Definition: __Canon.cs:3
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
Defines a mechanism for retrieving a service object; that is, an object that provides custom support ...