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

37 lines
1.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides a string that describes an individual configuration property. This class cannot be inherited.</summary>
// Token: 0x020003CE RID: 974
[Token(Token = "0x20003CE")]
[AttributeUsage(AttributeTargets.Property)]
public sealed class SettingsDescriptionAttribute : Attribute
{
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsDescriptionAttribute" /> class.</summary>
/// <param name="description">The <see cref="T:System.String" /> used as descriptive text.</param>
// Token: 0x06001993 RID: 6547 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001993")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingsDescriptionAttribute(string description)
{
}
/// <summary>Gets the descriptive text for the associated configuration property.</summary>
/// <returns>A <see cref="T:System.String" /> containing the descriptive text for the associated configuration property.</returns>
// Token: 0x170005BF RID: 1471
// (get) Token: 0x06001994 RID: 6548 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005BF")]
public string Description
{
[Token(Token = "0x6001994")]
[Address(RVA = "0x28AC1A0", Offset = "0x28AAFA0", VA = "0x1828AC1A0")]
get
{
return null;
}
}
}
}