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

106 lines
4.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Represents a simplified configuration element used for updating elements in the configuration. This class cannot be inherited.</summary>
// Token: 0x020003B8 RID: 952
[Token(Token = "0x20003B8")]
public sealed class SettingElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElement" /> class.</summary>
// Token: 0x0600192B RID: 6443 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600192B")]
[Address(RVA = "0x2F46620", Offset = "0x2F45620", VA = "0x182F46620")]
public SettingElement()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElement" /> class based on supplied parameters.</summary>
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingElement" /> object.</param>
/// <param name="serializeAs">A <see cref="T:System.Configuration.SettingsSerializeAs" /> object. This object is an enumeration used as the serialization scheme to store configuration settings.</param>
// Token: 0x0600192C RID: 6444 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600192C")]
[Address(RVA = "0x2F46650", Offset = "0x2F45650", VA = "0x182F46650")]
public SettingElement(string name, SettingsSerializeAs serializeAs)
{
}
/// <summary>Gets or sets the name of the <see cref="T:System.Configuration.SettingElement" /> object.</summary>
/// <returns>The name of the <see cref="T:System.Configuration.SettingElement" /> object.</returns>
// Token: 0x170005A1 RID: 1441
// (get) Token: 0x0600192D RID: 6445 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600192E RID: 6446 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A1")]
public string Name
{
[Token(Token = "0x600192D")]
[Address(RVA = "0x2F46680", Offset = "0x2F45680", VA = "0x182F46680")]
get
{
return null;
}
[Token(Token = "0x600192E")]
[Address(RVA = "0x2F46740", Offset = "0x2F45740", VA = "0x182F46740")]
set
{
}
}
// Token: 0x170005A2 RID: 1442
// (get) Token: 0x0600192F RID: 6447 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005A2")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x600192F")]
[Address(RVA = "0x2F466B0", Offset = "0x2F456B0", VA = "0x182F466B0", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets or sets the serialization mechanism used to persist the values of the <see cref="T:System.Configuration.SettingElement" /> object.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsSerializeAs" /> object.</returns>
// Token: 0x170005A3 RID: 1443
// (get) Token: 0x06001930 RID: 6448 RVA: 0x0000ABC0 File Offset: 0x00008DC0
// (set) Token: 0x06001931 RID: 6449 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A3")]
public SettingsSerializeAs SerializeAs
{
[Token(Token = "0x6001930")]
[Address(RVA = "0x2F466E0", Offset = "0x2F456E0", VA = "0x182F466E0")]
get
{
return SettingsSerializeAs.String;
}
[Token(Token = "0x6001931")]
[Address(RVA = "0x2F46770", Offset = "0x2F45770", VA = "0x182F46770")]
set
{
}
}
/// <summary>Gets or sets the value of a <see cref="T:System.Configuration.SettingElement" /> object by using a <see cref="T:System.Configuration.SettingValueElement" /> object.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingValueElement" /> object containing the value of the <see cref="T:System.Configuration.SettingElement" /> object.</returns>
// Token: 0x170005A4 RID: 1444
// (get) Token: 0x06001932 RID: 6450 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001933 RID: 6451 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A4")]
public SettingValueElement Value
{
[Token(Token = "0x6001932")]
[Address(RVA = "0x2F46710", Offset = "0x2F45710", VA = "0x182F46710")]
get
{
return null;
}
[Token(Token = "0x6001933")]
[Address(RVA = "0x2F467A0", Offset = "0x2F457A0", VA = "0x182F467A0")]
set
{
}
}
}
}