using System;
using Cpp2IlInjected;
namespace System
{
/// Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects.
// Token: 0x02000114 RID: 276
[Token(Token = "0x2000114")]
public interface IServiceProvider
{
/// Gets the service object of the specified type.
/// An object that specifies the type of service object to get.
/// A service object of type .
/// -or-
/// if there is no service object of type .
// Token: 0x06000A22 RID: 2594
[Token(Token = "0x6000A22")]
[Address(Slot = "0")]
object GetService(Type serviceType);
}
}