using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Contains a collection of objects. This class cannot be inherited.
// Token: 0x020003BB RID: 955
[Token(Token = "0x20003BB")]
public sealed class SettingElementCollection : ConfigurationElementCollection
{
/// Initializes a new instance of the class.
// Token: 0x06001939 RID: 6457 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001939")]
[Address(RVA = "0x28ABAE0", Offset = "0x28AA8E0", VA = "0x1828ABAE0")]
public SettingElementCollection()
{
}
/// Gets the type of the configuration collection.
/// The object of the collection.
// 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;
}
}
/// Adds a object to the collection.
/// The object to add to the collection.
// Token: 0x0600193C RID: 6460 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600193C")]
[Address(RVA = "0x28AB9C0", Offset = "0x28AA7C0", VA = "0x1828AB9C0")]
public void Add(SettingElement element)
{
}
/// Removes all objects from the collection.
// 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;
}
/// Gets a object from the collection.
/// A string value representing the object in the collection.
/// A object.
// 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;
}
/// Removes a object from the collection.
/// A object.
// Token: 0x06001941 RID: 6465 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001941")]
[Address(RVA = "0x28ABAB0", Offset = "0x28AA8B0", VA = "0x1828ABAB0")]
public void Remove(SettingElement element)
{
}
}
}