Files
27Aug2021-Cpp2IL-Dump/System/Configuration/SettingsGroupDescriptionAttribute.cs
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 application settings property group. This class cannot be inherited.</summary>
// Token: 0x020003CB RID: 971
[Token(Token = "0x20003CB")]
[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: 0x0600197E RID: 6526 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600197E")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
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: 0x170005BC RID: 1468
// (get) Token: 0x0600197F RID: 6527 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005BC")]
public string Description
{
[Token(Token = "0x600197F")]
[Address(RVA = "0x2F46C80", Offset = "0x2F45C80", VA = "0x182F46C80")]
get
{
return null;
}
}
}
}