using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies the properties that support lookup-based binding. This class cannot be inherited. // Token: 0x02000165 RID: 357 [Token(Token = "0x2000165")] [AttributeUsage(AttributeTargets.Class)] public sealed class LookupBindingPropertiesAttribute : Attribute { /// Initializes a new instance of the class using no parameters. // Token: 0x06000890 RID: 2192 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000890")] [Address(RVA = "0x4F3850", Offset = "0x4F2650", VA = "0x1804F3850")] public LookupBindingPropertiesAttribute() { } /// Initializes a new instance of the class. /// The name of the property to be used as the data source. /// The name of the property to be used for the display name. /// The name of the property to be used as the source for values. /// The name of the property to be used for lookups. // Token: 0x06000891 RID: 2193 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000891")] [Address(RVA = "0x4F37F0", Offset = "0x4F25F0", VA = "0x1804F37F0")] public LookupBindingPropertiesAttribute(string dataSource, string displayMember, string valueMember, string lookupMember) { } /// Gets the name of the data source property for the component to which the is bound. /// The data source property for the component to which the is bound. // Token: 0x1700019E RID: 414 // (get) Token: 0x06000892 RID: 2194 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700019E")] public string DataSource { [Token(Token = "0x6000892")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } /// Gets the name of the display member property for the component to which the is bound. /// The name of the display member property for the component to which the is bound. // Token: 0x1700019F RID: 415 // (get) Token: 0x06000893 RID: 2195 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700019F")] public string DisplayMember { [Token(Token = "0x6000893")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] get { return null; } } /// Gets the name of the value member property for the component to which the is bound. /// The name of the value member property for the component to which the is bound. // Token: 0x170001A0 RID: 416 // (get) Token: 0x06000894 RID: 2196 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001A0")] public string ValueMember { [Token(Token = "0x6000894")] [Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")] get { return null; } } /// Gets the name of the lookup member for the component to which this attribute is bound. /// The name of the lookup member for the component to which the is bound. // Token: 0x170001A1 RID: 417 // (get) Token: 0x06000895 RID: 2197 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001A1")] public string LookupMember { [Token(Token = "0x6000895")] [Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")] 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: 0x06000896 RID: 2198 RVA: 0x00005358 File Offset: 0x00003558 [Token(Token = "0x6000896")] [Address(RVA = "0x4F36C0", Offset = "0x4F24C0", VA = "0x1804F36C0", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Returns the hash code for this instance. /// A hash code for the current . // Token: 0x06000897 RID: 2199 RVA: 0x00005370 File Offset: 0x00003570 [Token(Token = "0x6000897")] [Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")] public override int GetHashCode() { return 0; } // Token: 0x0400052E RID: 1326 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400052E")] private readonly string dataSource; // Token: 0x0400052F RID: 1327 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400052F")] private readonly string displayMember; // Token: 0x04000530 RID: 1328 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000530")] private readonly string valueMember; // Token: 0x04000531 RID: 1329 [FieldOffset(Offset = "0x28")] [Token(Token = "0x4000531")] private readonly string lookupMember; /// Represents the default value for the class. // Token: 0x04000532 RID: 1330 [Token(Token = "0x4000532")] public static readonly LookupBindingPropertiesAttribute Default; } }