oh dear
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user