using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies when a component property can be bound to an application setting. // Token: 0x02000187 RID: 391 [Token(Token = "0x2000187")] [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: 0x06000A5C RID: 2652 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A5C")] [Address(RVA = "0xB9AFE0", Offset = "0xB99FE0", VA = "0x180B9AFE0")] 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: 0x17000209 RID: 521 // (get) Token: 0x06000A5D RID: 2653 RVA: 0x00006198 File Offset: 0x00004398 [Token(Token = "0x17000209")] public bool Bindable { [Token(Token = "0x6000A5D")] [Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")] 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: 0x06000A5E RID: 2654 RVA: 0x000061B0 File Offset: 0x000043B0 [Token(Token = "0x6000A5E")] [Address(RVA = "0xC28220", Offset = "0xC27220", VA = "0x180C28220", 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: 0x06000A5F RID: 2655 RVA: 0x000061C8 File Offset: 0x000043C8 [Token(Token = "0x6000A5F")] [Address(RVA = "0xA697A0", Offset = "0xA687A0", VA = "0x180A697A0", Slot = "2")] public override int GetHashCode() { return 0; } /// Specifies that a property is appropriate to bind settings to. // Token: 0x040005E1 RID: 1505 [Token(Token = "0x40005E1")] public static readonly SettingsBindableAttribute Yes; /// Specifies that a property is not appropriate to bind settings to. // Token: 0x040005E2 RID: 1506 [Token(Token = "0x40005E2")] public static readonly SettingsBindableAttribute No; // Token: 0x040005E3 RID: 1507 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40005E3")] private bool _bindable; } }