25 lines
830 B
C#
25 lines
830 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Specifies the browsable state of a property or method from within an editor.</summary>
|
|
// Token: 0x0200011E RID: 286
|
|
[Token(Token = "0x200011E")]
|
|
public enum EditorBrowsableState
|
|
{
|
|
/// <summary>The property or method is always browsable from within an editor.</summary>
|
|
// Token: 0x040004CE RID: 1230
|
|
[Token(Token = "0x40004CE")]
|
|
Always,
|
|
/// <summary>The property or method is never browsable from within an editor.</summary>
|
|
// Token: 0x040004CF RID: 1231
|
|
[Token(Token = "0x40004CF")]
|
|
Never,
|
|
/// <summary>The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.</summary>
|
|
// Token: 0x040004D0 RID: 1232
|
|
[Token(Token = "0x40004D0")]
|
|
Advanced
|
|
}
|
|
}
|