Files
Aug2021-Cpp2IL-Dump/System/Configuration/DefaultSettingValueAttribute.cs
T
2026-04-10 22:50:51 +02:00

37 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies the default value for an application settings property.</summary>
// Token: 0x020003C0 RID: 960
[Token(Token = "0x20003C0")]
[AttributeUsage(AttributeTargets.Property)]
public sealed class DefaultSettingValueAttribute : Attribute
{
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.DefaultSettingValueAttribute" /> class.</summary>
/// <param name="value">A <see cref="T:System.String" /> that represents the default value for the property.</param>
// Token: 0x0600195E RID: 6494 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600195E")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public DefaultSettingValueAttribute(string value)
{
}
/// <summary>Gets the default value for the application settings property.</summary>
/// <returns>A <see cref="T:System.String" /> that represents the default value for the property.</returns>
// Token: 0x170005AE RID: 1454
// (get) Token: 0x0600195F RID: 6495 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005AE")]
public string Value
{
[Token(Token = "0x600195F")]
[Address(RVA = "0x28A0D10", Offset = "0x289FB10", VA = "0x1828A0D10")]
get
{
return null;
}
}
}
}