140 lines
6.1 KiB
C#
140 lines
6.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Specifies the properties that support lookup-based binding. This class cannot be inherited.</summary>
|
|
// Token: 0x02000165 RID: 357
|
|
[Token(Token = "0x2000165")]
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class LookupBindingPropertiesAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> class using no parameters.</summary>
|
|
// Token: 0x06000890 RID: 2192 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000890")]
|
|
[Address(RVA = "0x4F3850", Offset = "0x4F2650", VA = "0x1804F3850")]
|
|
public LookupBindingPropertiesAttribute()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> class.</summary>
|
|
/// <param name="dataSource">The name of the property to be used as the data source.</param>
|
|
/// <param name="displayMember">The name of the property to be used for the display name.</param>
|
|
/// <param name="valueMember">The name of the property to be used as the source for values.</param>
|
|
/// <param name="lookupMember">The name of the property to be used for lookups.</param>
|
|
// 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)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the name of the data source property for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</summary>
|
|
/// <returns>The data source property for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the name of the display member property for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</summary>
|
|
/// <returns>The name of the display member property for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the name of the value member property for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</summary>
|
|
/// <returns>The name of the value member property for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the name of the lookup member for the component to which this attribute is bound.</summary>
|
|
/// <returns>The name of the lookup member for the component to which the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> is bound.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> instance.</summary>
|
|
/// <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> instance</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the object is equal to the current instance; otherwise, <see langword="false" />, indicating they are not equal.</returns>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Returns the hash code for this instance.</summary>
|
|
/// <returns>A hash code for the current <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" />.</returns>
|
|
// 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;
|
|
|
|
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.LookupBindingPropertiesAttribute" /> class.</summary>
|
|
// Token: 0x04000532 RID: 1330
|
|
[Token(Token = "0x4000532")]
|
|
public static readonly LookupBindingPropertiesAttribute Default;
|
|
}
|
|
}
|