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