mscorlib(4.0.0.0) API with additions
MaskedTextResultHint.cs
1 namespace System.ComponentModel
2 {
4  public enum MaskedTextResultHint
5  {
7  Unknown = 0,
11  NoEffect = 2,
13  SideEffect = 3,
15  Success = 4,
21  DigitExpected = -3,
23  LetterExpected = -4,
27  InvalidInput = -51,
33  NonEditPosition = -54,
35  PositionOutOfRange = -55
36  }
37 }
Success. The primary operation was not performed because it was not needed, but the method produced a...
Operation did not succeed. The prompt character is not valid at input, perhaps because the P:System....
Operation did not succeed. An input character was encountered that was not a digit.
Operation did not succeed. There were not enough edit positions available to fulfill the request.
Operation did not succeed. The specified position is not in the range of the target string; typically...
Operation did not succeed.An input character was encountered that was not a member of the ASCII chara...
Operation did not succeed. An input character was encountered that was not a signed digit.
Success. The operation succeeded because a literal, prompt or space character was an escaped characte...
Operation did not succeed.An input character was encountered that was not alphanumeric....
Success. The primary operation was not performed because it was not needed; therefore,...
MaskedTextResultHint
Specifies values that succinctly describe the results of a masked text parsing operation.
Success. The primary operation succeeded.
Operation did not succeed. The current position in the formatted string is a literal character.
Operation did not succeed. An input character was encountered that was not a letter.
Operation did not succeed. The program encountered an input character that was not valid....