using System; using Cpp2IlInjected; namespace System.Configuration { /// Specifies special services for application settings properties. This class cannot be inherited. // Token: 0x020003CE RID: 974 [Token(Token = "0x20003CE")] [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: 0x06001982 RID: 6530 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001982")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")] 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: 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; } } } }