Files
27Aug2021-Cpp2IL-Dump/System.Configuration/ConfigurationElementCollectionType.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

29 lines
1.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies the type of a <see cref="T:System.Configuration.ConfigurationElementCollectionType" /> object.</summary>
// Token: 0x02000006 RID: 6
[Token(Token = "0x2000006")]
public enum ConfigurationElementCollectionType
{
/// <summary>The default type of <see cref="T:System.Configuration.ConfigurationElementCollection" />. Collections of this type contain elements that can be merged across a hierarchy of configuration files. At any particular level within such a hierarchy, <see langword="add" />, <see langword="remove" />, and <see langword="clear" /> directives are used to modify any inherited properties and specify new ones.</summary>
// Token: 0x04000002 RID: 2
[Token(Token = "0x4000002")]
AddRemoveClearMap = 1,
/// <summary>Same as <see cref="F:System.Configuration.ConfigurationElementCollectionType.AddRemoveClearMap" />, except that this type causes the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object to sort its contents such that inherited elements are listed last.</summary>
// Token: 0x04000003 RID: 3
[Token(Token = "0x4000003")]
AddRemoveClearMapAlternate = 3,
/// <summary>Collections of this type contain elements that apply to the level at which they are specified, and to all child levels. A child level cannot modify the properties specified by a parent element of this type.</summary>
// Token: 0x04000004 RID: 4
[Token(Token = "0x4000004")]
BasicMap = 0,
/// <summary>Same as <see cref="F:System.Configuration.ConfigurationElementCollectionType.BasicMap" />, except that this type causes the <see cref="T:System.Configuration.ConfigurationElementCollection" /> object to sort its contents such that inherited elements are listed last.</summary>
// Token: 0x04000005 RID: 5
[Token(Token = "0x4000005")]
BasicMapAlternate = 2
}
}