using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies when a component property can be bound to an application setting. // Token: 0x0200018B RID: 395 [Token(Token = "0x200018B")] [AttributeUsage(AttributeTargets.Property)] public sealed class SettingsBindableAttribute : Attribute { /// Initializes a new instance of the class. /// /// to specify that a property is appropriate to bind settings to; otherwise, . // Token: 0x06000A72 RID: 2674 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A72")] [Address(RVA = "0x49E320", Offset = "0x49D120", VA = "0x18049E320")] public SettingsBindableAttribute(bool bindable) { } /// Gets a value indicating whether a property is appropriate to bind settings to. /// /// if the property is appropriate to bind settings to; otherwise, . // Token: 0x1700020D RID: 525 // (get) Token: 0x06000A73 RID: 2675 RVA: 0x000061B0 File Offset: 0x000043B0 [Token(Token = "0x1700020D")] public bool Bindable { [Token(Token = "0x6000A73")] [Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")] get { return default(bool); } } /// Returns a value that indicates whether this instance is equal to a specified object. /// An to compare with this instance or a null reference ( in Visual Basic). /// /// if equals the type and value of this instance; otherwise, . // Token: 0x06000A74 RID: 2676 RVA: 0x000061C8 File Offset: 0x000043C8 [Token(Token = "0x6000A74")] [Address(RVA = "0x4D8840", Offset = "0x4D7640", VA = "0x1804D8840", 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: 0x06000A75 RID: 2677 RVA: 0x000061E0 File Offset: 0x000043E0 [Token(Token = "0x6000A75")] [Address(RVA = "0x494E40", Offset = "0x493C40", VA = "0x180494E40", Slot = "2")] public override int GetHashCode() { return 0; } /// Specifies that a property is appropriate to bind settings to. // Token: 0x040005EE RID: 1518 [Token(Token = "0x40005EE")] public static readonly SettingsBindableAttribute Yes; /// Specifies that a property is not appropriate to bind settings to. // Token: 0x040005EF RID: 1519 [Token(Token = "0x40005EF")] public static readonly SettingsBindableAttribute No; // Token: 0x040005F0 RID: 1520 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40005F0")] private bool _bindable; } }