Files
27Aug2021-Cpp2IL-Dump/System/Configuration/DefaultSettingValueAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020003BC RID: 956
[Token(Token = "0x20003BC")]
[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: 0x06001947 RID: 6471 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001947")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
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: 0x170005AA RID: 1450
// (get) Token: 0x06001948 RID: 6472 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005AA")]
public string Value
{
[Token(Token = "0x6001948")]
[Address(RVA = "0x2F3B7D0", Offset = "0x2F3A7D0", VA = "0x182F3B7D0")]
get
{
return null;
}
}
}
}