Files
Aug2021-Cpp2IL-Dump/System/ComponentModel/DefaultBindingPropertyAttribute.cs
T
2026-04-10 22:50:51 +02:00

77 lines
3.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the default binding property for a component. This class cannot be inherited.</summary>
// Token: 0x02000110 RID: 272
[Token(Token = "0x2000110")]
[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: 0x060006A4 RID: 1700 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006A4")]
[Address(RVA = "0x4E7250", Offset = "0x4E6050", VA = "0x1804E7250")]
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: 0x060006A5 RID: 1701 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006A5")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
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: 0x1700012D RID: 301
// (get) Token: 0x060006A6 RID: 1702 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700012D")]
public string Name
{
[Token(Token = "0x60006A6")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
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: 0x060006A7 RID: 1703 RVA: 0x000049B0 File Offset: 0x00002BB0
[Token(Token = "0x60006A7")]
[Address(RVA = "0x4E7180", Offset = "0x4E5F80", VA = "0x1804E7180", 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: 0x060006A8 RID: 1704 RVA: 0x000049C8 File Offset: 0x00002BC8
[Token(Token = "0x60006A8")]
[Address(RVA = "0x490530", Offset = "0x48F330", VA = "0x180490530", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004AE RID: 1198
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004AE")]
private readonly string name;
/// <summary>Represents the default value for the <see cref="T:System.ComponentModel.DefaultBindingPropertyAttribute" /> class.</summary>
// Token: 0x040004AF RID: 1199
[Token(Token = "0x40004AF")]
public static readonly DefaultBindingPropertyAttribute Default;
}
}