using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the default binding property for a component. This class cannot be inherited. // Token: 0x02000110 RID: 272 [Token(Token = "0x2000110")] [AttributeUsage(AttributeTargets.Class)] public sealed class DefaultBindingPropertyAttribute : Attribute { /// Initializes a new instance of the class using no parameters. // Token: 0x060006A4 RID: 1700 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006A4")] [Address(RVA = "0x4E7250", Offset = "0x4E6050", VA = "0x1804E7250")] public DefaultBindingPropertyAttribute() { } /// Initializes a new instance of the class using the specified property name. /// The name of the default binding property. // Token: 0x060006A5 RID: 1701 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60006A5")] [Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")] public DefaultBindingPropertyAttribute(string name) { } /// Gets the name of the default binding property for the component to which the is bound. /// The name of the default binding property for the component to which the is bound. // Token: 0x1700012D RID: 301 // (get) Token: 0x060006A6 RID: 1702 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700012D")] public string Name { [Token(Token = "0x60006A6")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } /// Determines whether the specified is equal to the current instance. /// The to compare with the current instance /// /// if the object is equal to the current instance; otherwise, , indicating they are not equal. // Token: 0x060006A7 RID: 1703 RVA: 0x000049B0 File Offset: 0x00002BB0 [Token(Token = "0x60006A7")] [Address(RVA = "0x4E7180", Offset = "0x4E5F80", VA = "0x1804E7180", 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: 0x060006A8 RID: 1704 RVA: 0x000049C8 File Offset: 0x00002BC8 [Token(Token = "0x60006A8")] [Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")] public override int GetHashCode() { return 0; } // Token: 0x040004AE RID: 1198 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004AE")] private readonly string name; /// Represents the default value for the class. // Token: 0x040004AF RID: 1199 [Token(Token = "0x40004AF")] public static readonly DefaultBindingPropertyAttribute Default; } }