m
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Configuration
|
||||
{
|
||||
/// <summary>Specifies a name for application settings property group. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003CC RID: 972
|
||||
[Token(Token = "0x20003CC")]
|
||||
[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: 0x06001980 RID: 6528 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001980")]
|
||||
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
|
||||
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: 0x170005BD RID: 1469
|
||||
// (get) Token: 0x06001981 RID: 6529 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005BD")]
|
||||
public string GroupName
|
||||
{
|
||||
[Token(Token = "0x6001981")]
|
||||
[Address(RVA = "0x2F46CB0", Offset = "0x2F45CB0", VA = "0x182F46CB0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user