using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the display name for a property, event, or public void method which takes no arguments. // Token: 0x0200011C RID: 284 [Token(Token = "0x200011C")] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Event)] public class DisplayNameAttribute : Attribute { /// Initializes a new instance of the class. // Token: 0x060006FC RID: 1788 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006FC")] [Address(RVA = "0x4E92B0", Offset = "0x4E80B0", VA = "0x1804E92B0")] public DisplayNameAttribute() { } /// Initializes a new instance of the class using the display name. /// The display name. // Token: 0x060006FD RID: 1789 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006FD")] [Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")] public DisplayNameAttribute(string displayName) { } /// Gets the display name for a property, event, or public void method that takes no arguments stored in this attribute. /// The display name. // Token: 0x1700013C RID: 316 // (get) Token: 0x060006FE RID: 1790 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700013C")] public virtual string DisplayName { [Token(Token = "0x60006FE")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "7")] get { return null; } } /// Gets or sets the display name. /// The display name. // Token: 0x1700013D RID: 317 // (get) Token: 0x060006FF RID: 1791 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000700 RID: 1792 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700013D")] protected string DisplayNameValue { [Token(Token = "0x60006FF")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } [Token(Token = "0x6000700")] [Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")] set { } } /// Determines whether two instances are equal. /// The to test the value equality of. /// /// if the value of the given object is equal to that of the current object; otherwise, . // Token: 0x06000701 RID: 1793 RVA: 0x00004C68 File Offset: 0x00002E68 [Token(Token = "0x6000701")] [Address(RVA = "0x4E90E0", Offset = "0x4E7EE0", VA = "0x1804E90E0", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns the hash code for this instance. /// A hash code for the current . // Token: 0x06000702 RID: 1794 RVA: 0x00004C80 File Offset: 0x00002E80 [Token(Token = "0x6000702")] [Address(RVA = "0x4E7FC0", Offset = "0x4E6DC0", VA = "0x1804E7FC0", Slot = "2")] public override int GetHashCode() { return 0; } /// Determines if this attribute is the default. /// /// if the attribute is the default value for this attribute class; otherwise, . // Token: 0x06000703 RID: 1795 RVA: 0x00004C98 File Offset: 0x00002E98 [Token(Token = "0x6000703")] [Address(RVA = "0x4E91B0", Offset = "0x4E7FB0", VA = "0x1804E91B0", Slot = "6")] public override bool IsDefaultAttribute() { return default(bool); } /// Specifies the default value for the . This field is read-only. // Token: 0x040004D2 RID: 1234 [Token(Token = "0x40004D2")] public static readonly DisplayNameAttribute Default; // Token: 0x040004D3 RID: 1235 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004D3")] private string _displayName; } }