using System; using Cpp2IlInjected; namespace System.Configuration { /// Declaratively instructs the .NET Framework to create an instance of a configuration element collection. This class cannot be inherited. // Token: 0x02000009 RID: 9 [Token(Token = "0x2000009")] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)] public sealed class ConfigurationCollectionAttribute : Attribute { /// Initializes a new instance of the class. /// The type of the property collection to create. /// /// is . // Token: 0x06000013 RID: 19 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000013")] [Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")] public ConfigurationCollectionAttribute(Type itemType) { } /// Gets or sets the name of the configuration element. /// The name that substitutes the standard name "add" for the configuration item. // Token: 0x17000005 RID: 5 // (set) Token: 0x06000014 RID: 20 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000005")] public string AddItemName { [Token(Token = "0x6000014")] [Address(RVA = "0x74DEA0", Offset = "0x74CCA0", VA = "0x18074DEA0")] set { } } /// Gets or sets the name for the configuration element. /// The name that replaces the standard name "clear" for the configuration item. // Token: 0x17000006 RID: 6 // (set) Token: 0x06000015 RID: 21 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000006")] public string ClearItemsName { [Token(Token = "0x6000015")] [Address(RVA = "0x74DED0", Offset = "0x74CCD0", VA = "0x18074DED0")] set { } } /// Gets or sets the type of the attribute. /// The type of the . // Token: 0x17000007 RID: 7 // (set) Token: 0x06000016 RID: 22 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000007")] public ConfigurationElementCollectionType CollectionType { [Token(Token = "0x6000016")] [Address(RVA = "0x74DF00", Offset = "0x74CD00", VA = "0x18074DF00")] set { } } /// Gets or sets the name for the configuration element. /// The name that replaces the standard name "remove" for the configuration element. // Token: 0x17000008 RID: 8 // (set) Token: 0x06000017 RID: 23 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000008")] public string RemoveItemName { [Token(Token = "0x6000017")] [Address(RVA = "0x74DF30", Offset = "0x74CD30", VA = "0x18074DF30")] set { } } } }