Files
2026-04-10 22:50:51 +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: 0x02000114 RID: 276
[Token(Token = "0x2000114")]
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: 0x06000A22 RID: 2594
[Token(Token = "0x6000A22")]
[Address(Slot = "0")]
object GetService(Type serviceType);
}
}