Files
2026-04-10 22:50:51 +02:00

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: 0x020003BB RID: 955
[Token(Token = "0x20003BB")]
public sealed class SettingElementCollection : ConfigurationElementCollection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElementCollection" /> class.</summary>
// Token: 0x06001939 RID: 6457 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001939")]
[Address(RVA = "0x28ABAE0", Offset = "0x28AA8E0", VA = "0x1828ABAE0")]
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: 0x170005A3 RID: 1443
// (get) Token: 0x0600193A RID: 6458 RVA: 0x0000ABC0 File Offset: 0x00008DC0
[Token(Token = "0x170005A3")]
public override ConfigurationElementCollectionType CollectionType
{
[Token(Token = "0x600193A")]
[Address(RVA = "0x28ABB10", Offset = "0x28AA910", VA = "0x1828ABB10", Slot = "13")]
get
{
return ConfigurationElementCollectionType.BasicMap;
}
}
// Token: 0x170005A4 RID: 1444
// (get) Token: 0x0600193B RID: 6459 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005A4")]
protected override string ElementName
{
[Token(Token = "0x600193B")]
[Address(RVA = "0x28ABB40", Offset = "0x28AA940", VA = "0x1828ABB40", 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: 0x0600193C RID: 6460 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600193C")]
[Address(RVA = "0x28AB9C0", Offset = "0x28AA7C0", VA = "0x1828AB9C0")]
public void Add(SettingElement element)
{
}
/// <summary>Removes all <see cref="T:System.Configuration.SettingElement" /> objects from the collection.</summary>
// Token: 0x0600193D RID: 6461 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600193D")]
[Address(RVA = "0x28AB9F0", Offset = "0x28AA7F0", VA = "0x1828AB9F0")]
public void Clear()
{
}
// Token: 0x0600193E RID: 6462 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600193E")]
[Address(RVA = "0x28ABA20", Offset = "0x28AA820", VA = "0x1828ABA20", 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: 0x0600193F RID: 6463 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600193F")]
[Address(RVA = "0x28ABA80", Offset = "0x28AA880", VA = "0x1828ABA80")]
public SettingElement Get(string elementKey)
{
return null;
}
// Token: 0x06001940 RID: 6464 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001940")]
[Address(RVA = "0x28ABA50", Offset = "0x28AA850", VA = "0x1828ABA50", 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: 0x06001941 RID: 6465 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001941")]
[Address(RVA = "0x28ABAB0", Offset = "0x28AA8B0", VA = "0x1828ABAB0")]
public void Remove(SettingElement element)
{
}
}
}