Files
2026-04-10 22:50:51 +02:00

37 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies the serialization mechanism that the settings provider should use. This class cannot be inherited.</summary>
// Token: 0x020003D7 RID: 983
[Token(Token = "0x20003D7")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class SettingsSerializeAsAttribute : Attribute
{
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsSerializeAsAttribute" /> class.</summary>
/// <param name="serializeAs">A <see cref="T:System.Configuration.SettingsSerializeAs" /> enumerated value that specifies the serialization scheme.</param>
// Token: 0x060019AA RID: 6570 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019AA")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingsSerializeAsAttribute(SettingsSerializeAs serializeAs)
{
}
/// <summary>Gets the <see cref="T:System.Configuration.SettingsSerializeAs" /> enumeration value that specifies the serialization scheme.</summary>
/// <returns>A <see cref="T:System.Configuration.SettingsSerializeAs" /> enumerated value that specifies the serialization scheme.</returns>
// Token: 0x170005C4 RID: 1476
// (get) Token: 0x060019AB RID: 6571 RVA: 0x0000ACE0 File Offset: 0x00008EE0
[Token(Token = "0x170005C4")]
public SettingsSerializeAs SerializeAs
{
[Token(Token = "0x60019AB")]
[Address(RVA = "0x28AD310", Offset = "0x28AC110", VA = "0x1828AD310")]
get
{
return SettingsSerializeAs.String;
}
}
}
}