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

37 lines
1.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies a name for application settings property group. This class cannot be inherited.</summary>
// Token: 0x020003D0 RID: 976
[Token(Token = "0x20003D0")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class SettingsGroupNameAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsGroupNameAttribute" /> class.</summary>
/// <param name="groupName">A <see cref="T:System.String" /> containing the name of the application settings property group.</param>
// Token: 0x06001997 RID: 6551 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001997")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingsGroupNameAttribute(string groupName)
{
}
/// <summary>Gets the name of the application settings property group.</summary>
/// <returns>A <see cref="T:System.String" /> containing the name of the application settings property group.</returns>
// Token: 0x170005C1 RID: 1473
// (get) Token: 0x06001998 RID: 6552 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005C1")]
public string GroupName
{
[Token(Token = "0x6001998")]
[Address(RVA = "0x28AC200", Offset = "0x28AB000", VA = "0x1828AC200")]
get
{
return null;
}
}
}
}