using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the default binding property for a component. This class cannot be inherited. // Token: 0x0200010C RID: 268 [Token(Token = "0x200010C")] [AttributeUsage(AttributeTargets.Class)] public sealed class DefaultBindingPropertyAttribute : Attribute { /// Initializes a new instance of the class using no parameters. // Token: 0x0600068E RID: 1678 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600068E")] [Address(RVA = "0xC516A0", Offset = "0xC506A0", VA = "0x180C516A0")] public DefaultBindingPropertyAttribute() { } /// Initializes a new instance of the class using the specified property name. /// The name of the default binding property. // Token: 0x0600068F RID: 1679 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600068F")] [Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")] 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: 0x17000129 RID: 297 // (get) Token: 0x06000690 RID: 1680 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000129")] public string Name { [Token(Token = "0x6000690")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] 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: 0x06000691 RID: 1681 RVA: 0x00004998 File Offset: 0x00002B98 [Token(Token = "0x6000691")] [Address(RVA = "0xC515D0", Offset = "0xC505D0", VA = "0x180C515D0", 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: 0x06000692 RID: 1682 RVA: 0x000049B0 File Offset: 0x00002BB0 [Token(Token = "0x6000692")] [Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")] public override int GetHashCode() { return 0; } // Token: 0x040004A1 RID: 1185 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40004A1")] private readonly string name; /// Represents the default value for the class. // Token: 0x040004A2 RID: 1186 [Token(Token = "0x40004A2")] public static readonly DefaultBindingPropertyAttribute Default; } }