This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,106 @@
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: 0x020000FC RID: 252
[Token(Token = "0x20000FC")]
[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: 0x06000620 RID: 1568 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000620")]
[Address(RVA = "0x497C80", Offset = "0x496A80", VA = "0x180497C80")]
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: 0x06000621 RID: 1569 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000621")]
[Address(RVA = "0x497CE0", Offset = "0x496AE0", VA = "0x180497CE0")]
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: 0x06000622 RID: 1570 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000622")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
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: 0x17000112 RID: 274
// (get) Token: 0x06000623 RID: 1571 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000112")]
public string DataSource
{
[Token(Token = "0x6000623")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
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: 0x17000113 RID: 275
// (get) Token: 0x06000624 RID: 1572 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000113")]
public string DataMember
{
[Token(Token = "0x6000624")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
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: 0x06000625 RID: 1573 RVA: 0x00004698 File Offset: 0x00002898
[Token(Token = "0x6000625")]
[Address(RVA = "0x497B90", Offset = "0x496990", VA = "0x180497B90", 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: 0x06000626 RID: 1574 RVA: 0x000046B0 File Offset: 0x000028B0
[Token(Token = "0x6000626")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x04000488 RID: 1160
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000488")]
private readonly string dataSource;
// Token: 0x04000489 RID: 1161
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000489")]
private readonly string dataMember;
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.ComplexBindingPropertiesAttribute" /> class.</summary>
// Token: 0x0400048A RID: 1162
[Token(Token = "0x400048A")]
public static readonly ComplexBindingPropertiesAttribute Default;
}
}