This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,76 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default binding property for a component. This class cannot be inherited.</summary>
// Token: 0x0200010C RID: 268
[Token(Token = "0x200010C")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class DefaultBindingPropertyAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class using no parameters.</summary>
// Token: 0x0600068E RID: 1678 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600068E")]
[Address(RVA = "0xC516A0", Offset = "0xC506A0", VA = "0x180C516A0")]
public DefaultBindingPropertyAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class using the specified property name.</summary>
/// <param name="name">The name of the default binding property.</param>
// Token: 0x0600068F RID: 1679 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600068F")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public DefaultBindingPropertyAttribute(string name)
{
}
/// <summary>Gets the name of the default binding property for the component to which the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> is bound.</summary>
/// <returns>The name of the default binding property for the component to which the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> is bound.</returns>
// Token: 0x17000129 RID: 297
// (get) Token: 0x06000690 RID: 1680 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000129")]
public string Name
{
[Token(Token = "0x6000690")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
/// <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> instance.</summary>
/// <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> 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: 0x06000691 RID: 1681 RVA: 0x00004998 File Offset: 0x00002B98
[Token(Token = "0x6000691")]
[Address(RVA = "0xC515D0", Offset = "0xC505D0", VA = "0x180C515D0", 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: 0x06000692 RID: 1682 RVA: 0x000049B0 File Offset: 0x00002BB0
[Token(Token = "0x6000692")]
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004A1 RID: 1185
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004A1")]
private readonly string name;
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class.</summary>
// Token: 0x040004A2 RID: 1186
[Token(Token = "0x40004A2")]
public static readonly DefaultBindingPropertyAttribute Default;
}
}