This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,36 @@
using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies special services for application settings properties. This class cannot be inherited.</summary>
// Token: 0x020003CE RID: 974
[Token(Token = "0x20003CE")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class SettingsManageabilityAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsManageabilityAttribute" /> class.</summary>
/// <param name="manageability">A <see cref="T:System.Configuration.SettingsManageability" /> value that enumerates the services being requested.</param>
// Token: 0x06001982 RID: 6530 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001982")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
public SettingsManageabilityAttribute(SettingsManageability manageability)
{
}
/// <summary>Gets the set of special services that have been requested.</summary>
/// <returns>A value that results from using the logical <see langword="OR" /> operator to combine all the <see cref="T:System.Configuration.SettingsManageability" /> enumeration values corresponding to the requested services.</returns>
// Token: 0x170005BE RID: 1470
// (get) Token: 0x06001983 RID: 6531 RVA: 0x0000ACB0 File Offset: 0x00008EB0
[Token(Token = "0x170005BE")]
public SettingsManageability Manageability
{
[Token(Token = "0x6001983")]
[Address(RVA = "0x2F46E00", Offset = "0x2F45E00", VA = "0x182F46E00")]
get
{
return SettingsManageability.Roaming;
}
}
}
}