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