Files
27Aug2021-Cpp2IL-Dump/System.Configuration/ConfigurationCollectionAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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 = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
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 = "0x122B8B0", Offset = "0x122A8B0", VA = "0x18122B8B0")]
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 = "0x122B8E0", Offset = "0x122A8E0", VA = "0x18122B8E0")]
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 = "0x122B910", Offset = "0x122A910", VA = "0x18122B910")]
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 = "0x122B940", Offset = "0x122A940", VA = "0x18122B940")]
set
{
}
}
}
}