MaskedTextProvider.PasswordChar Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the character to be substituted for the actual input characters.
public:
property char PasswordChar { char get(); void set(char value); };
public char PasswordChar { get; set; }
member this.PasswordChar : char with get, set
Public Property PasswordChar As Char
Property Value
The Char value used as the password character.
Exceptions
The password character specified when setting this property is the same as the current prompt character, PromptChar. The two are required to be different.
The character specified when setting this property is not a valid password character, as determined by the IsValidPasswordChar(Char) method.
Remarks
For sensitive user input, it is common practice to conceal the actual information entered by the user during output operations. If the PasswordChar property is set to a non-null
character, output methods such as ToDisplayString and ToString will obscure the input characters with the specified password character. Setting this property to null
will disable password protection functionality.