8 references to ToString
System (6)
compmod\system\componentmodel\MaskedTextProvider.cs (6)
2658return ToString(/*ignorePwdChar*/ true, this.IncludePrompt, this.IncludeLiterals, 0, this.testString.Length); 2667return ToString(ignorePasswordChar, this.IncludePrompt, this.IncludeLiterals, 0, this.testString.Length); 2677return ToString(/*ignorePwdChar*/ true, this.IncludePrompt, this.IncludeLiterals, startPosition, length); 2688return ToString( ignorePasswordChar, this.IncludePrompt, this.IncludeLiterals, startPosition, length ); 2697return ToString( /*ignorePwdChar*/ true, includePrompt, includeLiterals, 0, this.testString.Length ); 2707return ToString( /*ignorePwdChar*/ true, includePrompt, includeLiterals, startPosition, length);
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MaskedTextBox.cs (2)
1922return this.maskedTextProvider.ToString(/*ignorePwdChar */ false, includePrompt, /*includeLiterals*/ true, 0, this.maskedTextProvider.Length); 1996return this.maskedTextProvider.ToString( /*ignorePasswordChar*/ true, includePrompt, includeLiterals, selStart, selLength );