31 lines
1.3 KiB
C#
31 lines
1.3 KiB
C#
using System;
|
|
using System.Collections;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Represents a collection of key/value pairs used to describe a configuration object as well as a <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
|
// Token: 0x02000385 RID: 901
|
|
[Token(Token = "0x2000385")]
|
|
[Serializable]
|
|
public class SettingsAttributeDictionary : Hashtable
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsAttributeDictionary" /> class.</summary>
|
|
// Token: 0x060017D0 RID: 6096 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60017D0")]
|
|
[Address(RVA = "0x2F469E0", Offset = "0x2F459E0", VA = "0x182F469E0")]
|
|
public SettingsAttributeDictionary()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsAttributeDictionary" /> class.</summary>
|
|
/// <param name="attributes">A collection of key/value pairs that are related to configuration settings.</param>
|
|
// Token: 0x060017D1 RID: 6097 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60017D1")]
|
|
[Address(RVA = "0x2F469B0", Offset = "0x2F459B0", VA = "0x182F469B0")]
|
|
public SettingsAttributeDictionary(SettingsAttributeDictionary attributes)
|
|
{
|
|
}
|
|
}
|
|
}
|