Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/IServiceProvider.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

22 lines
806 B
C#

using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects.</summary>
// Token: 0x0200011B RID: 283
[Token(Token = "0x200011B")]
public interface IServiceProvider
{
/// <summary>Gets the service object of the specified type.</summary>
/// <param name="serviceType">An object that specifies the type of service object to get.</param>
/// <returns>A service object of type <paramref name="serviceType" />.
/// -or-
/// <see langword="null" /> if there is no service object of type <paramref name="serviceType" />.</returns>
// Token: 0x06000A4C RID: 2636
[Token(Token = "0x6000A4C")]
[Address(Slot = "0")]
object GetService(Type serviceType);
}
}