Files
Aug2021-Cpp2IL-Dump/System/Configuration/SettingsManageabilityAttribute.cs
T
2026-04-10 22:50:51 +02:00

37 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies special services for application settings properties. This class cannot be inherited.</summary>
// Token: 0x020003D2 RID: 978
[Token(Token = "0x20003D2")]
[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: 0x06001999 RID: 6553 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001999")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
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: 0x170005C2 RID: 1474
// (get) Token: 0x0600199A RID: 6554 RVA: 0x0000ACC8 File Offset: 0x00008EC8
[Token(Token = "0x170005C2")]
public SettingsManageability Manageability
{
[Token(Token = "0x600199A")]
[Address(RVA = "0x28AC350", Offset = "0x28AB150", VA = "0x1828AC350")]
get
{
return SettingsManageability.Roaming;
}
}
}
}