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: 0x020003BE RID: 958
|
|
[Token(Token = "0x20003BE")]
|
|
[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: 0x0600194D RID: 6477
|
|
[Token(Token = "0x600194D")]
|
|
[Address(Slot = "0")]
|
|
object GetConfig(string configKey);
|
|
|
|
/// <summary>Used for initialization.</summary>
|
|
// Token: 0x0600194E RID: 6478
|
|
[Token(Token = "0x600194E")]
|
|
[Address(Slot = "1")]
|
|
void Init();
|
|
}
|
|
}
|