Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020003CA RID: 970
[Token(Token = "0x20003CA")]
[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: 0x0600197C RID: 6524 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600197C")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
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: 0x170005BB RID: 1467
// (get) Token: 0x0600197D RID: 6525 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005BB")]
public string Description
{
[Token(Token = "0x600197D")]
[Address(RVA = "0x2F46C50", Offset = "0x2F45C50", VA = "0x182F46C50")]
get
{
return null;
}
}
}
}