using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies whether a property or event should be displayed in a Properties window. // Token: 0x020000ED RID: 237 [Token(Token = "0x20000ED")] [AttributeUsage(AttributeTargets.All)] public sealed class BrowsableAttribute : Attribute { /// Initializes a new instance of the class. /// /// if a property or event can be modified at design time; otherwise, . The default is . // Token: 0x060005D0 RID: 1488 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60005D0")] [Address(RVA = "0xB92790", Offset = "0xB91790", VA = "0x180B92790")] public BrowsableAttribute(bool browsable) { } /// Gets a value indicating whether an object is browsable. /// /// if the object is browsable; otherwise, . // Token: 0x170000F8 RID: 248 // (get) Token: 0x060005D1 RID: 1489 RVA: 0x00004578 File Offset: 0x00002778 [Token(Token = "0x170000F8")] public bool Browsable { [Token(Token = "0x60005D1")] [Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")] get { return default(bool); } } /// Indicates whether this instance and a specified object are equal. /// Another object to compare to. /// /// if is equal to this instance; otherwise, . // Token: 0x060005D2 RID: 1490 RVA: 0x00004590 File Offset: 0x00002790 [Token(Token = "0x60005D2")] [Address(RVA = "0xB925F0", Offset = "0xB915F0", VA = "0x180B925F0", 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: 0x060005D3 RID: 1491 RVA: 0x000045A8 File Offset: 0x000027A8 [Token(Token = "0x60005D3")] [Address(RVA = "0xA697A0", Offset = "0xA687A0", VA = "0x180A697A0", 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: 0x060005D4 RID: 1492 RVA: 0x000045C0 File Offset: 0x000027C0 [Token(Token = "0x60005D4")] [Address(RVA = "0xB92670", Offset = "0xB91670", VA = "0x180B92670", Slot = "6")] public override bool IsDefaultAttribute() { return default(bool); } /// Specifies that a property or event can be modified at design time. This field is read-only. // Token: 0x0400045E RID: 1118 [Token(Token = "0x400045E")] public static readonly BrowsableAttribute Yes; /// Specifies that a property or event cannot be modified at design time. This field is read-only. // Token: 0x0400045F RID: 1119 [Token(Token = "0x400045F")] public static readonly BrowsableAttribute No; /// Specifies the default value for the , which is . This field is read-only. // Token: 0x04000460 RID: 1120 [Token(Token = "0x4000460")] public static readonly BrowsableAttribute Default; // Token: 0x04000461 RID: 1121 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000461")] private bool browsable; } }