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

92 lines
3.8 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies whether a property or event should be displayed in a Properties window.</summary>
// Token: 0x020000ED RID: 237
[Token(Token = "0x20000ED")]
[AttributeUsage(AttributeTargets.All)]
public sealed class BrowsableAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BrowsableAttribute" /> class.</summary>
/// <param name="browsable">
/// <see langword="true" /> if a property or event can be modified at design time; otherwise, <see langword="false" />. The default is <see langword="true" />.</param>
// Token: 0x060005D0 RID: 1488 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005D0")]
[Address(RVA = "0xB92790", Offset = "0xB91790", VA = "0x180B92790")]
public BrowsableAttribute(bool browsable)
{
}
/// <summary>Gets a value indicating whether an object is browsable.</summary>
/// <returns>
/// <see langword="true" /> if the object is browsable; otherwise, <see langword="false" />.</returns>
// Token: 0x170000F8 RID: 248
// (get) Token: 0x060005D1 RID: 1489 RVA: 0x00004578 File Offset: 0x00002778
[Token(Token = "0x170000F8")]
public bool Browsable
{
[Token(Token = "0x60005D1")]
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
get
{
return default(bool);
}
}
/// <summary>Indicates whether this instance and a specified object are equal.</summary>
/// <param name="obj">Another object to compare to.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is equal to this instance; otherwise, <see langword="false" />.</returns>
// Token: 0x060005D2 RID: 1490 RVA: 0x00004590 File Offset: 0x00002790
[Token(Token = "0x60005D2")]
[Address(RVA = "0xB925F0", Offset = "0xB915F0", VA = "0x180B925F0", 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: 0x060005D3 RID: 1491 RVA: 0x000045A8 File Offset: 0x000027A8
[Token(Token = "0x60005D3")]
[Address(RVA = "0xA697A0", Offset = "0xA687A0", VA = "0x180A697A0", 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: 0x060005D4 RID: 1492 RVA: 0x000045C0 File Offset: 0x000027C0
[Token(Token = "0x60005D4")]
[Address(RVA = "0xB92670", Offset = "0xB91670", VA = "0x180B92670", Slot = "6")]
public override bool IsDefaultAttribute()
{
return default(bool);
}
/// <summary>Specifies that a property or event can be modified at design time. This <see langword="static" /> field is read-only.</summary>
// Token: 0x0400045E RID: 1118
[Token(Token = "0x400045E")]
public static readonly BrowsableAttribute Yes;
/// <summary>Specifies that a property or event cannot be modified at design time. This <see langword="static" /> field is read-only.</summary>
// Token: 0x0400045F RID: 1119
[Token(Token = "0x400045F")]
public static readonly BrowsableAttribute No;
/// <summary>Specifies the default value for the <see cref="T:System.ComponentModel.BrowsableAttribute" />, which is <see cref="F:System.ComponentModel.BrowsableAttribute.Yes" />. This <see langword="static" /> field is read-only.</summary>
// Token: 0x04000460 RID: 1120
[Token(Token = "0x4000460")]
public static readonly BrowsableAttribute Default;
// Token: 0x04000461 RID: 1121
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000461")]
private bool browsable;
}
}