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: 0x02000122 RID: 290
|
|
[Token(Token = "0x2000122")]
|
|
public enum EditorBrowsableState
|
|
{
|
|
/// <summary>The property or method is always browsable from within an editor.</summary>
|
|
// Token: 0x040004DB RID: 1243
|
|
[Token(Token = "0x40004DB")]
|
|
Always,
|
|
/// <summary>The property or method is never browsable from within an editor.</summary>
|
|
// Token: 0x040004DC RID: 1244
|
|
[Token(Token = "0x40004DC")]
|
|
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: 0x040004DD RID: 1245
|
|
[Token(Token = "0x40004DD")]
|
|
Advanced
|
|
}
|
|
}
|