8 references to ToString
System.ComponentModel.TypeConverter (6)
System\ComponentModel\MaskedTextProvider.cs (6)
2506return ToString(/*ignorePwdChar*/ true, IncludePrompt, IncludeLiterals, 0, _testString.Length); 2515return ToString(ignorePasswordChar, IncludePrompt, IncludeLiterals, 0, _testString.Length); 2525return ToString(/*ignorePwdChar*/ true, IncludePrompt, IncludeLiterals, startPosition, length); 2536return ToString(ignorePasswordChar, IncludePrompt, IncludeLiterals, startPosition, length); 2545return ToString( /*ignorePwdChar*/ true, includePrompt, includeLiterals, 0, _testString.Length); 2555return ToString( /*ignorePwdChar*/ true, includePrompt, includeLiterals, startPosition, length);
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (2)
1718return _maskedTextProvider.ToString(/*ignorePwdChar */ false, includePrompt, /*includeLiterals*/ true, 0, _maskedTextProvider.Length); 1791return _maskedTextProvider.ToString(ignorePasswordChar: true, includePrompt, includeLiterals, selStart, selLength);