28 lines
773 B
C#
28 lines
773 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Provides standard configuration methods.</summary>
|
|
// Token: 0x020003C2 RID: 962
|
|
[Token(Token = "0x20003C2")]
|
|
[ComVisible(false)]
|
|
public interface IConfigurationSystem
|
|
{
|
|
/// <summary>Gets the specified configuration.</summary>
|
|
/// <param name="configKey">The configuration key.</param>
|
|
/// <returns>The object representing the configuration.</returns>
|
|
// Token: 0x06001964 RID: 6500
|
|
[Token(Token = "0x6001964")]
|
|
[Address(Slot = "0")]
|
|
object GetConfig(string configKey);
|
|
|
|
/// <summary>Used for initialization.</summary>
|
|
// Token: 0x06001965 RID: 6501
|
|
[Token(Token = "0x6001965")]
|
|
[Address(Slot = "1")]
|
|
void Init();
|
|
}
|
|
}
|