using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies values that succinctly describe the results of a masked text parsing operation.
// Token: 0x02000167 RID: 359
[Token(Token = "0x2000167")]
public enum MaskedTextResultHint
{
/// Unknown. The result of the operation could not be determined.
// Token: 0x04000555 RID: 1365
[Token(Token = "0x4000555")]
Unknown,
/// Success. The operation succeeded because a literal, prompt or space character was an escaped character. For more information about escaped characters, see the method.
// Token: 0x04000556 RID: 1366
[Token(Token = "0x4000556")]
CharacterEscaped,
/// Success. The primary operation was not performed because it was not needed; therefore, no side effect was produced.
// Token: 0x04000557 RID: 1367
[Token(Token = "0x4000557")]
NoEffect,
/// Success. The primary operation was not performed because it was not needed, but the method produced a side effect. For example, the method can delete an unassigned edit position, which causes left-shifting of subsequent characters in the formatted string.
// Token: 0x04000558 RID: 1368
[Token(Token = "0x4000558")]
SideEffect,
/// Success. The primary operation succeeded.
// Token: 0x04000559 RID: 1369
[Token(Token = "0x4000559")]
Success,
/// Operation did not succeed.An input character was encountered that was not a member of the ASCII character set.
// Token: 0x0400055A RID: 1370
[Token(Token = "0x400055A")]
AsciiCharacterExpected = -1,
/// Operation did not succeed.An input character was encountered that was not alphanumeric. .
// Token: 0x0400055B RID: 1371
[Token(Token = "0x400055B")]
AlphanumericCharacterExpected = -2,
/// Operation did not succeed. An input character was encountered that was not a digit.
// Token: 0x0400055C RID: 1372
[Token(Token = "0x400055C")]
DigitExpected = -3,
/// Operation did not succeed. An input character was encountered that was not a letter.
// Token: 0x0400055D RID: 1373
[Token(Token = "0x400055D")]
LetterExpected = -4,
/// Operation did not succeed. An input character was encountered that was not a signed digit.
// Token: 0x0400055E RID: 1374
[Token(Token = "0x400055E")]
SignedDigitExpected = -5,
/// Operation did not succeed. The program encountered an input character that was not valid. For more information about characters that are not valid, see the method.
// Token: 0x0400055F RID: 1375
[Token(Token = "0x400055F")]
InvalidInput = -51,
/// Operation did not succeed. The prompt character is not valid at input, perhaps because the property is set to .
// Token: 0x04000560 RID: 1376
[Token(Token = "0x4000560")]
PromptCharNotAllowed = -52,
/// Operation did not succeed. There were not enough edit positions available to fulfill the request.
// Token: 0x04000561 RID: 1377
[Token(Token = "0x4000561")]
UnavailableEditPosition = -53,
/// Operation did not succeed. The current position in the formatted string is a literal character.
// Token: 0x04000562 RID: 1378
[Token(Token = "0x4000562")]
NonEditPosition = -54,
/// Operation did not succeed. The specified position is not in the range of the target string; typically it is either less than zero or greater then the length of the target string.
// Token: 0x04000563 RID: 1379
[Token(Token = "0x4000563")]
PositionOutOfRange = -55
}
}