using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies a description for a property or event. // Token: 0x02000111 RID: 273 [Token(Token = "0x2000111")] [AttributeUsage(AttributeTargets.All)] public class DescriptionAttribute : Attribute { /// Initializes a new instance of the class with no parameters. // Token: 0x060006B8 RID: 1720 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B8")] [Address(RVA = "0xC52510", Offset = "0xC51510", VA = "0x180C52510")] public DescriptionAttribute() { } /// Initializes a new instance of the class with a description. /// The description text. // Token: 0x060006B9 RID: 1721 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006B9")] [Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")] public DescriptionAttribute(string description) { } /// Gets the description stored in this attribute. /// The description stored in this attribute. // Token: 0x1700012E RID: 302 // (get) Token: 0x060006BA RID: 1722 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700012E")] public virtual string Description { [Token(Token = "0x60006BA")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "7")] get { return null; } } /// Gets or sets the string stored as the description. /// The string stored as the description. The default value is an empty string (""). // Token: 0x1700012F RID: 303 // (get) Token: 0x060006BB RID: 1723 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060006BC RID: 1724 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700012F")] protected string DescriptionValue { [Token(Token = "0x60006BB")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } [Token(Token = "0x60006BC")] [Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")] set { } } /// Returns whether the value of the given object is equal to the current . /// The object to test the value equality of. /// /// if the value of the given object is equal to that of the current; otherwise, . // Token: 0x060006BD RID: 1725 RVA: 0x00004A70 File Offset: 0x00002C70 [Token(Token = "0x60006BD")] [Address(RVA = "0xC52340", Offset = "0xC51340", VA = "0x180C52340", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns the hash code for this instance. /// A 32-bit signed integer hash code. // Token: 0x060006BE RID: 1726 RVA: 0x00004A88 File Offset: 0x00002C88 [Token(Token = "0x60006BE")] [Address(RVA = "0x654220", Offset = "0x653220", VA = "0x180654220", Slot = "2")] public override int GetHashCode() { return 0; } /// Returns a value indicating whether this is the default instance. /// /// , if this is the default instance; otherwise, . // Token: 0x060006BF RID: 1727 RVA: 0x00004AA0 File Offset: 0x00002CA0 [Token(Token = "0x60006BF")] [Address(RVA = "0xC52410", Offset = "0xC51410", VA = "0x180C52410", Slot = "6")] public override bool IsDefaultAttribute() { return default(bool); } /// Specifies the default value for the , which is an empty string (""). This field is read-only. // Token: 0x040004A9 RID: 1193 [Token(Token = "0x40004A9")] public static readonly DescriptionAttribute Default; // Token: 0x040004AA RID: 1194 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004AA")] private string description; } }