Files
Aug2021-Cpp2IL-Dump/System/Configuration/SettingsGroupDescriptionAttribute.cs
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 application settings property group. This class cannot be inherited.</summary>
// Token: 0x020003CF RID: 975
[Token(Token = "0x20003CF")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class SettingsGroupDescriptionAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsGroupDescriptionAttribute" /> class.</summary>
/// <param name="description">A <see cref="T:System.String" /> containing the descriptive text for the application settings group.</param>
// Token: 0x06001995 RID: 6549 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001995")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingsGroupDescriptionAttribute(string description)
{
}
/// <summary>The descriptive text for the application settings properties group.</summary>
/// <returns>A <see cref="T:System.String" /> containing the descriptive text for the application settings group.</returns>
// Token: 0x170005C0 RID: 1472
// (get) Token: 0x06001996 RID: 6550 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005C0")]
public string Description
{
[Token(Token = "0x6001996")]
[Address(RVA = "0x28AC1D0", Offset = "0x28AAFD0", VA = "0x1828AC1D0")]
get
{
return null;
}
}
}
}