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