Files
27Aug2021-Cpp2IL-Dump/System/ComponentModel/ComplexBindingPropertiesAttribute.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

107 lines
4.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the data source and data member properties for a component that supports complex data binding. This class cannot be inherited.</summary>
// Token: 0x020000F8 RID: 248
[Token(Token = "0x20000F8")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class ComplexBindingPropertiesAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class using no parameters.</summary>
// Token: 0x0600060A RID: 1546 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600060A")]
[Address(RVA = "0xB949E0", Offset = "0xB939E0", VA = "0x180B949E0")]
public ComplexBindingPropertiesAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class using the specified data source.</summary>
/// <param name="dataSource">The name of the property to be used as the data source.</param>
// Token: 0x0600060B RID: 1547 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600060B")]
[Address(RVA = "0xB94A00", Offset = "0xB93A00", VA = "0x180B94A00")]
public ComplexBindingPropertiesAttribute(string dataSource)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class using the specified data source and data member.</summary>
/// <param name="dataSource">The name of the property to be used as the data source.</param>
/// <param name="dataMember">The name of the property to be used as the source for data.</param>
// 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)
{
}
/// <summary>Gets the name of the data source property for the component to which the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound.</summary>
/// <returns>The name of the data source property for the component to which <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound.</returns>
// 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;
}
}
/// <summary>Gets the name of the data member property for the component to which the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound.</summary>
/// <returns>The name of the data member property for the component to which <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> is bound</returns>
// 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;
}
}
/// <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> instance.</summary>
/// <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> 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: 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);
}
/// <summary>Returns the hash code for this instance.</summary>
/// <returns>A 32-bit signed integer hash code.</returns>
// 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;
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class.</summary>
// Token: 0x0400047D RID: 1149
[Token(Token = "0x400047D")]
public static readonly ComplexBindingPropertiesAttribute Default;
}
}