101 lines
4.0 KiB
C#
101 lines
4.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Contains a collection of <see cref="T:System.Configuration.SettingElement" /> objects. This class cannot be inherited.</summary>
|
|
// Token: 0x020003B7 RID: 951
|
|
[Token(Token = "0x20003B7")]
|
|
public sealed class SettingElementCollection : ConfigurationElementCollection
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElementCollection" /> class.</summary>
|
|
// Token: 0x06001922 RID: 6434 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001922")]
|
|
[Address(RVA = "0x2F46590", Offset = "0x2F45590", VA = "0x182F46590")]
|
|
public SettingElementCollection()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the type of the configuration collection.</summary>
|
|
/// <returns>The <see cref="T:System.Configuration.ConfigurationElementCollectionType" /> object of the collection.</returns>
|
|
// Token: 0x1700059F RID: 1439
|
|
// (get) Token: 0x06001923 RID: 6435 RVA: 0x0000ABA8 File Offset: 0x00008DA8
|
|
[Token(Token = "0x1700059F")]
|
|
public override ConfigurationElementCollectionType CollectionType
|
|
{
|
|
[Token(Token = "0x6001923")]
|
|
[Address(RVA = "0x2F465C0", Offset = "0x2F455C0", VA = "0x182F465C0", Slot = "13")]
|
|
get
|
|
{
|
|
return ConfigurationElementCollectionType.BasicMap;
|
|
}
|
|
}
|
|
|
|
// Token: 0x170005A0 RID: 1440
|
|
// (get) Token: 0x06001924 RID: 6436 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170005A0")]
|
|
protected override string ElementName
|
|
{
|
|
[Token(Token = "0x6001924")]
|
|
[Address(RVA = "0x2F465F0", Offset = "0x2F455F0", VA = "0x182F465F0", Slot = "14")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Adds a <see cref="T:System.Configuration.SettingElement" /> object to the collection.</summary>
|
|
/// <param name="element">The <see cref="T:System.Configuration.SettingElement" /> object to add to the collection.</param>
|
|
// Token: 0x06001925 RID: 6437 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001925")]
|
|
[Address(RVA = "0x2F46470", Offset = "0x2F45470", VA = "0x182F46470")]
|
|
public void Add(SettingElement element)
|
|
{
|
|
}
|
|
|
|
/// <summary>Removes all <see cref="T:System.Configuration.SettingElement" /> objects from the collection.</summary>
|
|
// Token: 0x06001926 RID: 6438 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001926")]
|
|
[Address(RVA = "0x2F464A0", Offset = "0x2F454A0", VA = "0x182F464A0")]
|
|
public void Clear()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06001927 RID: 6439 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001927")]
|
|
[Address(RVA = "0x2F464D0", Offset = "0x2F454D0", VA = "0x182F464D0", Slot = "16")]
|
|
protected override ConfigurationElement CreateNewElement()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets a <see cref="T:System.Configuration.SettingElement" /> object from the collection.</summary>
|
|
/// <param name="elementKey">A string value representing the <see cref="T:System.Configuration.SettingElement" /> object in the collection.</param>
|
|
/// <returns>A <see cref="T:System.Configuration.SettingElement" /> object.</returns>
|
|
// Token: 0x06001928 RID: 6440 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001928")]
|
|
[Address(RVA = "0x2F46530", Offset = "0x2F45530", VA = "0x182F46530")]
|
|
public SettingElement Get(string elementKey)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06001929 RID: 6441 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001929")]
|
|
[Address(RVA = "0x2F46500", Offset = "0x2F45500", VA = "0x182F46500", Slot = "17")]
|
|
protected override object GetElementKey(ConfigurationElement element)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Removes a <see cref="T:System.Configuration.SettingElement" /> object from the collection.</summary>
|
|
/// <param name="element">A <see cref="T:System.Configuration.SettingElement" /> object.</param>
|
|
// Token: 0x0600192A RID: 6442 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600192A")]
|
|
[Address(RVA = "0x2F46560", Offset = "0x2F45560", VA = "0x182F46560")]
|
|
public void Remove(SettingElement element)
|
|
{
|
|
}
|
|
}
|
|
}
|