37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Indicates that an application settings property has a special significance. This class cannot be inherited.</summary>
|
|
// Token: 0x020003D6 RID: 982
|
|
[Token(Token = "0x20003D6")]
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
|
|
public sealed class SpecialSettingAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SpecialSettingAttribute" /> class.</summary>
|
|
/// <param name="specialSetting">A <see cref="T:System.Configuration.SpecialSetting" /> enumeration value defining the category of the application settings property.</param>
|
|
// Token: 0x06001997 RID: 6551 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001997")]
|
|
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
|
|
public SpecialSettingAttribute(SpecialSetting specialSetting)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the value describing the special setting category of the application settings property.</summary>
|
|
/// <returns>A <see cref="T:System.Configuration.SpecialSetting" /> enumeration value defining the category of the application settings property.</returns>
|
|
// Token: 0x170005C1 RID: 1473
|
|
// (get) Token: 0x06001998 RID: 6552 RVA: 0x0000ACE0 File Offset: 0x00008EE0
|
|
[Token(Token = "0x170005C1")]
|
|
public SpecialSetting SpecialSetting
|
|
{
|
|
[Token(Token = "0x6001998")]
|
|
[Address(RVA = "0x2F47E50", Offset = "0x2F46E50", VA = "0x182F47E50")]
|
|
get
|
|
{
|
|
return SpecialSetting.ConnectionString;
|
|
}
|
|
}
|
|
}
|
|
}
|