Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

109 lines
4.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies the display name for a property, event, or public void method which takes no arguments.</summary>
// Token: 0x0200011C RID: 284
[Token(Token = "0x200011C")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Event)]
public class DisplayNameAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DisplayNameAttribute" /> class.</summary>
// Token: 0x060006FC RID: 1788 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006FC")]
[Address(RVA = "0x4E92B0", Offset = "0x4E80B0", VA = "0x1804E92B0")]
public DisplayNameAttribute()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DisplayNameAttribute" /> class using the display name.</summary>
/// <param name="displayName">The display name.</param>
// Token: 0x060006FD RID: 1789 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60006FD")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public DisplayNameAttribute(string displayName)
{
}
/// <summary>Gets the display name for a property, event, or public void method that takes no arguments stored in this attribute.</summary>
/// <returns>The display name.</returns>
// Token: 0x1700013C RID: 316
// (get) Token: 0x060006FE RID: 1790 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700013C")]
public virtual string DisplayName
{
[Token(Token = "0x60006FE")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "7")]
get
{
return null;
}
}
/// <summary>Gets or sets the display name.</summary>
/// <returns>The display name.</returns>
// Token: 0x1700013D RID: 317
// (get) Token: 0x060006FF RID: 1791 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000700 RID: 1792 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700013D")]
protected string DisplayNameValue
{
[Token(Token = "0x60006FF")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
[Token(Token = "0x6000700")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
set
{
}
}
/// <summary>Determines whether two <see cref="T:System.ComponentModel.DisplayNameAttribute" /> instances are equal.</summary>
/// <param name="obj">The <see cref="T:System.ComponentModel.DisplayNameAttribute" /> to test the value equality of.</param>
/// <returns>
/// <see langword="true" /> if the value of the given object is equal to that of the current object; otherwise, <see langword="false" />.</returns>
// Token: 0x06000701 RID: 1793 RVA: 0x00004C68 File Offset: 0x00002E68
[Token(Token = "0x6000701")]
[Address(RVA = "0x4E90E0", Offset = "0x4E7EE0", VA = "0x1804E90E0", 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.DisplayNameAttribute" />.</returns>
// Token: 0x06000702 RID: 1794 RVA: 0x00004C80 File Offset: 0x00002E80
[Token(Token = "0x6000702")]
[Address(RVA = "0x4E7FC0", Offset = "0x4E6DC0", VA = "0x1804E7FC0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Determines if this attribute is the default.</summary>
/// <returns>
/// <see langword="true" /> if the attribute is the default value for this attribute class; otherwise, <see langword="false" />.</returns>
// Token: 0x06000703 RID: 1795 RVA: 0x00004C98 File Offset: 0x00002E98
[Token(Token = "0x6000703")]
[Address(RVA = "0x4E91B0", Offset = "0x4E7FB0", VA = "0x1804E91B0", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.DisplayNameAttribute" />. This field is read-only.</summary>
// Token: 0x040004D2 RID: 1234
[Token(Token = "0x40004D2")]
public static readonly DisplayNameAttribute Default;
// Token: 0x040004D3 RID: 1235
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004D3")]
private string _displayName;
}
}