using System;
namespace System.ComponentModel
{
/// Specifies the browsable state of a property or method from within an editor.
// Token: 0x0200007B RID: 123
public enum EditorBrowsableState
{
/// The property or method is always browsable from within an editor.
// Token: 0x0400016F RID: 367
Always,
/// The property or method is never browsable from within an editor.
// Token: 0x04000170 RID: 368
Never,
/// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.
// Token: 0x04000171 RID: 369
Advanced
}
}