This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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);
}
}