Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

72 lines
3.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies that a property or method is viewable in an editor. This class cannot be inherited.</summary>
// Token: 0x0200011D RID: 285
[Token(Token = "0x200011D")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate)]
public sealed class EditorBrowsableAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.EditorBrowsableAttribute" /> class with an <see cref="T:System.ComponentModel.EditorBrowsableState" />.</summary>
/// <param name="state">The <see cref="T:System.ComponentModel.EditorBrowsableState" /> to set <see cref="P:System.ComponentModel.EditorBrowsableAttribute.State" /> to.</param>
// Token: 0x06000707 RID: 1799 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000707")]
[Address(RVA = "0x41F8E0", Offset = "0x41E8E0", VA = "0x18041F8E0")]
public EditorBrowsableAttribute(EditorBrowsableState state)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.EditorBrowsableAttribute" /> class with <see cref="P:System.ComponentModel.EditorBrowsableAttribute.State" /> set to the default state.</summary>
// Token: 0x06000708 RID: 1800 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000708")]
[Address(RVA = "0xC53D30", Offset = "0xC52D30", VA = "0x180C53D30")]
public EditorBrowsableAttribute()
{
}
/// <summary>Gets the browsable state of the property or method.</summary>
/// <returns>An <see cref="T:System.ComponentModel.EditorBrowsableState" /> that is the browsable state of the property or method.</returns>
// Token: 0x17000141 RID: 321
// (get) Token: 0x06000709 RID: 1801 RVA: 0x00004CE0 File Offset: 0x00002EE0
[Token(Token = "0x17000141")]
public EditorBrowsableState State
{
[Token(Token = "0x6000709")]
[Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000")]
get
{
return EditorBrowsableState.Always;
}
}
/// <summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.EditorBrowsableAttribute" />.</summary>
/// <param name="obj">The object 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; otherwise, <see langword="false" />.</returns>
// Token: 0x0600070A RID: 1802 RVA: 0x00004CF8 File Offset: 0x00002EF8
[Token(Token = "0x600070A")]
[Address(RVA = "0xC53CB0", Offset = "0xC52CB0", VA = "0x180C53CB0", 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: 0x0600070B RID: 1803 RVA: 0x00004D10 File Offset: 0x00002F10
[Token(Token = "0x600070B")]
[Address(RVA = "0xB8D310", Offset = "0xB8C310", VA = "0x180B8D310", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x040004CC RID: 1228
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004CC")]
private EditorBrowsableState browsableState;
}
}