using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Specifies special services for application settings properties. This class cannot be inherited.
// Token: 0x020003D2 RID: 978
[Token(Token = "0x20003D2")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class SettingsManageabilityAttribute : Attribute
{
/// Initializes a new instance of the class.
/// A value that enumerates the services being requested.
// Token: 0x06001999 RID: 6553 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001999")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingsManageabilityAttribute(SettingsManageability manageability)
{
}
/// Gets the set of special services that have been requested.
/// A value that results from using the logical operator to combine all the enumeration values corresponding to the requested services.
// 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;
}
}
}
}