Files
2026-04-10 22:50:51 +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: 0x020003BC RID: 956
[Token(Token = "0x20003BC")]
public sealed class SettingElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingElement" /> class.</summary>
// Token: 0x06001942 RID: 6466 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001942")]
[Address(RVA = "0x28ABB70", Offset = "0x28AA970", VA = "0x1828ABB70")]
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: 0x06001943 RID: 6467 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001943")]
[Address(RVA = "0x28ABBA0", Offset = "0x28AA9A0", VA = "0x1828ABBA0")]
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: 0x170005A5 RID: 1445
// (get) Token: 0x06001944 RID: 6468 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001945 RID: 6469 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A5")]
public string Name
{
[Token(Token = "0x6001944")]
[Address(RVA = "0x28ABBD0", Offset = "0x28AA9D0", VA = "0x1828ABBD0")]
get
{
return null;
}
[Token(Token = "0x6001945")]
[Address(RVA = "0x28ABC90", Offset = "0x28AAA90", VA = "0x1828ABC90")]
set
{
}
}
// Token: 0x170005A6 RID: 1446
// (get) Token: 0x06001946 RID: 6470 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005A6")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x6001946")]
[Address(RVA = "0x28ABC00", Offset = "0x28AAA00", VA = "0x1828ABC00", 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: 0x170005A7 RID: 1447
// (get) Token: 0x06001947 RID: 6471 RVA: 0x0000ABD8 File Offset: 0x00008DD8
// (set) Token: 0x06001948 RID: 6472 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A7")]
public SettingsSerializeAs SerializeAs
{
[Token(Token = "0x6001947")]
[Address(RVA = "0x28ABC30", Offset = "0x28AAA30", VA = "0x1828ABC30")]
get
{
return SettingsSerializeAs.String;
}
[Token(Token = "0x6001948")]
[Address(RVA = "0x28ABCC0", Offset = "0x28AAAC0", VA = "0x1828ABCC0")]
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: 0x170005A8 RID: 1448
// (get) Token: 0x06001949 RID: 6473 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600194A RID: 6474 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170005A8")]
public SettingValueElement Value
{
[Token(Token = "0x6001949")]
[Address(RVA = "0x28ABC60", Offset = "0x28AAA60", VA = "0x1828ABC60")]
get
{
return null;
}
[Token(Token = "0x600194A")]
[Address(RVA = "0x28ABCF0", Offset = "0x28AAAF0", VA = "0x1828ABCF0")]
set
{
}
}
}
}