using System;
namespace System
{
/// Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects.
/// 2
// Token: 0x02000677 RID: 1655
public interface IServiceProvider
{
/// Gets the service object of the specified type.
/// A service object of type .-or- null if there is no service object of type .
/// An object that specifies the type of service object to get.
/// 2
// Token: 0x06003EDD RID: 16093
object GetService(Type serviceType);
}
}