using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Defines identifiers that indicate the type of a refresh of the Properties window.
// Token: 0x020001B5 RID: 437
[Token(Token = "0x20001B5")]
public enum RefreshProperties
{
/// No refresh is necessary.
// Token: 0x04000646 RID: 1606
[Token(Token = "0x4000646")]
None,
/// The properties should be requeried and the view should be refreshed.
// Token: 0x04000647 RID: 1607
[Token(Token = "0x4000647")]
All,
/// The view should be refreshed.
// Token: 0x04000648 RID: 1608
[Token(Token = "0x4000648")]
Repaint
}
}