Files
Aug2021-Cpp2IL-Dump/System.Configuration/ConfigurationCollectionAttribute.cs
2026-04-10 22:50:51 +02:00

80 lines
3.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Declaratively instructs the .NET Framework to create an instance of a configuration element collection. This class cannot be inherited.</summary>
// Token: 0x02000009 RID: 9
[Token(Token = "0x2000009")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class ConfigurationCollectionAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationCollectionAttribute" /> class.</summary>
/// <param name="itemType">The type of the property collection to create.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="itemType" /> is <see langword="null" />.</exception>
// Token: 0x06000013 RID: 19 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000013")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public ConfigurationCollectionAttribute(Type itemType)
{
}
/// <summary>Gets or sets the name of the <see langword="&lt;add&gt;" /> configuration element.</summary>
/// <returns>The name that substitutes the standard name "add" for the configuration item.</returns>
// 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
{
}
}
/// <summary>Gets or sets the name for the <see langword="&lt;clear&gt;" /> configuration element.</summary>
/// <returns>The name that replaces the standard name "clear" for the configuration item.</returns>
// 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
{
}
}
/// <summary>Gets or sets the type of the <see cref="T:System.Configuration.ConfigurationCollectionAttribute" /> attribute.</summary>
/// <returns>The type of the <see cref="T:System.Configuration.ConfigurationCollectionAttribute" />.</returns>
// 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
{
}
}
/// <summary>Gets or sets the name for the <see langword="&lt;remove&gt;" /> configuration element.</summary>
/// <returns>The name that replaces the standard name "remove" for the configuration element.</returns>
// 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
{
}
}
}
}