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: 0x0200011B RID: 283 [Token(Token = "0x200011B")] 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: 0x06000A4C RID: 2636 [Token(Token = "0x6000A4C")] [Address(Slot = "0")] object GetService(Type serviceType); } }