using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies that a property or method is viewable in an editor. This class cannot be inherited.
// 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
{
/// Initializes a new instance of the class with an .
/// The to set to.
// Token: 0x06000707 RID: 1799 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000707")]
[Address(RVA = "0x41F8E0", Offset = "0x41E8E0", VA = "0x18041F8E0")]
public EditorBrowsableAttribute(EditorBrowsableState state)
{
}
/// Initializes a new instance of the class with set to the default state.
// Token: 0x06000708 RID: 1800 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000708")]
[Address(RVA = "0xC53D30", Offset = "0xC52D30", VA = "0x180C53D30")]
public EditorBrowsableAttribute()
{
}
/// Gets the browsable state of the property or method.
/// An that is the browsable state of the property or method.
// 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;
}
}
/// Returns whether the value of the given object is equal to the current .
/// The object to test the value equality of.
///
/// if the value of the given object is equal to that of the current; otherwise, .
// 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);
}
/// Returns the hash code for this instance.
/// A 32-bit signed integer hash code.
// 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;
}
}