using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Specifies the usage of another attribute class. This class cannot be inherited. // Token: 0x020000B9 RID: 185 [Token(Token = "0x20000B9")] [AttributeUsage(AttributeTargets.Class)] [ComVisible(true)] [Serializable] public sealed class AttributeUsageAttribute : Attribute { /// Initializes a new instance of the class with the specified list of , the value, and the value. /// The set of values combined using a bitwise OR operation to indicate which program elements are valid. // Token: 0x0600053C RID: 1340 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600053C")] [Address(RVA = "0x26C52E0", Offset = "0x26C40E0", VA = "0x1826C52E0")] public AttributeUsageAttribute(AttributeTargets validOn) { } /// Gets or sets a Boolean value indicating whether more than one instance of the indicated attribute can be specified for a single program element. /// /// if more than one instance is allowed to be specified; otherwise, . The default is . // Token: 0x17000098 RID: 152 // (get) Token: 0x0600053D RID: 1341 RVA: 0x00004320 File Offset: 0x00002520 // (set) Token: 0x0600053E RID: 1342 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000098")] public bool AllowMultiple { [Token(Token = "0x600053D")] [Address(RVA = "0x40B710", Offset = "0x40A510", VA = "0x18040B710")] get { return default(bool); } [Token(Token = "0x600053E")] [Address(RVA = "0x8EBC70", Offset = "0x8EAA70", VA = "0x1808EBC70")] set { } } /// Gets or sets a value that determines whether the indicated attribute is inherited by derived classes and overriding members. /// /// if the attribute can be inherited by derived classes and overriding members; otherwise, . The default is . // Token: 0x17000099 RID: 153 // (get) Token: 0x0600053F RID: 1343 RVA: 0x00004338 File Offset: 0x00002538 // (set) Token: 0x06000540 RID: 1344 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000099")] public bool Inherited { [Token(Token = "0x600053F")] [Address(RVA = "0xBCF900", Offset = "0xBCE700", VA = "0x180BCF900")] get { return default(bool); } [Token(Token = "0x6000540")] [Address(RVA = "0xBCEFB0", Offset = "0xBCDDB0", VA = "0x180BCEFB0")] set { } } // Token: 0x0400020E RID: 526 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x400020E")] internal AttributeTargets m_attributeTarget; // Token: 0x0400020F RID: 527 [global::Cpp2IlInjected.FieldOffset(Offset = "0x14")] [Token(Token = "0x400020F")] internal bool m_allowMultiple; // Token: 0x04000210 RID: 528 [global::Cpp2IlInjected.FieldOffset(Offset = "0x15")] [Token(Token = "0x4000210")] internal bool m_inherited; // Token: 0x04000211 RID: 529 [Token(Token = "0x4000211")] internal static AttributeUsageAttribute Default; } }