using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies values that succinctly describe the results of a masked text parsing operation.
// Token: 0x0200016B RID: 363
[Token(Token = "0x200016B")]
public enum MaskedTextResultHint
{
/// Unknown. The result of the operation could not be determined.
// Token: 0x04000562 RID: 1378
[Token(Token = "0x4000562")]
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: 0x04000563 RID: 1379
[Token(Token = "0x4000563")]
CharacterEscaped,
/// Success. The primary operation was not performed because it was not needed; therefore, no side effect was produced.
// Token: 0x04000564 RID: 1380
[Token(Token = "0x4000564")]
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: 0x04000565 RID: 1381
[Token(Token = "0x4000565")]
SideEffect,
/// Success. The primary operation succeeded.
// Token: 0x04000566 RID: 1382
[Token(Token = "0x4000566")]
Success,
/// Operation did not succeed.An input character was encountered that was not a member of the ASCII character set.
// Token: 0x04000567 RID: 1383
[Token(Token = "0x4000567")]
AsciiCharacterExpected = -1,
/// Operation did not succeed.An input character was encountered that was not alphanumeric. .
// Token: 0x04000568 RID: 1384
[Token(Token = "0x4000568")]
AlphanumericCharacterExpected = -2,
/// Operation did not succeed. An input character was encountered that was not a digit.
// Token: 0x04000569 RID: 1385
[Token(Token = "0x4000569")]
DigitExpected = -3,
/// Operation did not succeed. An input character was encountered that was not a letter.
// Token: 0x0400056A RID: 1386
[Token(Token = "0x400056A")]
LetterExpected = -4,
/// Operation did not succeed. An input character was encountered that was not a signed digit.
// Token: 0x0400056B RID: 1387
[Token(Token = "0x400056B")]
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: 0x0400056C RID: 1388
[Token(Token = "0x400056C")]
InvalidInput = -51,
/// Operation did not succeed. The prompt character is not valid at input, perhaps because the property is set to .
// Token: 0x0400056D RID: 1389
[Token(Token = "0x400056D")]
PromptCharNotAllowed = -52,
/// Operation did not succeed. There were not enough edit positions available to fulfill the request.
// Token: 0x0400056E RID: 1390
[Token(Token = "0x400056E")]
UnavailableEditPosition = -53,
/// Operation did not succeed. The current position in the formatted string is a literal character.
// Token: 0x0400056F RID: 1391
[Token(Token = "0x400056F")]
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: 0x04000570 RID: 1392
[Token(Token = "0x4000570")]
PositionOutOfRange = -55
}
}