using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the data source and data member properties for a component that supports complex data binding. This class cannot be inherited. // Token: 0x020000F8 RID: 248 [Token(Token = "0x20000F8")] [AttributeUsage(AttributeTargets.Class)] public sealed class ComplexBindingPropertiesAttribute : Attribute { /// Initializes a new instance of the class using no parameters. // Token: 0x0600060A RID: 1546 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600060A")] [Address(RVA = "0xB949E0", Offset = "0xB939E0", VA = "0x180B949E0")] public ComplexBindingPropertiesAttribute() { } /// Initializes a new instance of the class using the specified data source. /// The name of the property to be used as the data source. // Token: 0x0600060B RID: 1547 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600060B")] [Address(RVA = "0xB94A00", Offset = "0xB93A00", VA = "0x180B94A00")] public ComplexBindingPropertiesAttribute(string dataSource) { } /// Initializes a new instance of the class using the specified data source and data member. /// The name of the property to be used as the data source. /// The name of the property to be used as the source for data. // Token: 0x0600060C RID: 1548 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600060C")] [Address(RVA = "0x4714F0", Offset = "0x4704F0", VA = "0x1804714F0")] public ComplexBindingPropertiesAttribute(string dataSource, string dataMember) { } /// Gets the name of the data source property for the component to which the is bound. /// The name of the data source property for the component to which is bound. // Token: 0x1700010E RID: 270 // (get) Token: 0x0600060D RID: 1549 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700010E")] public string DataSource { [Token(Token = "0x600060D")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } } /// Gets the name of the data member property for the component to which the is bound. /// The name of the data member property for the component to which is bound // Token: 0x1700010F RID: 271 // (get) Token: 0x0600060E RID: 1550 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700010F")] public string DataMember { [Token(Token = "0x600060E")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] 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: 0x0600060F RID: 1551 RVA: 0x00004680 File Offset: 0x00002880 [Token(Token = "0x600060F")] [Address(RVA = "0xB948F0", Offset = "0xB938F0", VA = "0x180B948F0", 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: 0x06000610 RID: 1552 RVA: 0x00004698 File Offset: 0x00002898 [Token(Token = "0x6000610")] [Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")] public override int GetHashCode() { return 0; } // Token: 0x0400047B RID: 1147 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400047B")] private readonly string dataSource; // Token: 0x0400047C RID: 1148 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400047C")] private readonly string dataMember; /// Represents the default value for the class. // Token: 0x0400047D RID: 1149 [Token(Token = "0x400047D")] public static readonly ComplexBindingPropertiesAttribute Default; } }