NET Password Generator
ValidSpecialCharacters Property
Example 



KellermanSoftware.NetPasswordGenerator Namespace > PasswordConfig Class : ValidSpecialCharacters Property
Define special characters for password generation. Default is @!$%+/=~
Syntax
'Declaration
 
Public Property ValidSpecialCharacters As String
'Usage
 
Dim instance As PasswordConfig
Dim value As String
 
instance.ValidSpecialCharacters = value
 
value = instance.ValidSpecialCharacters
public string ValidSpecialCharacters {get; set;}
public:
property String^ ValidSpecialCharacters {
   String^ get();
   void set (    String^ value);
}
Example
//Licensed Mode
//PasswordGenerator generator = new PasswordGenerator("User Name From Receipt", "License Key From Receipt");
 
//Trial Mode
PasswordGenerator generator = new PasswordGenerator();
generator.Config.ValidSpecialCharacters = "@#$";
generator.Config.MinSpecialCharacters = 1;
generator.Config.MaxSpecialCharacters = 1;
generator.Config.SpecialCharacterPosition = Position.Center;
 
string password = generator.Generate();
Console.WriteLine(password);
'Licensed Mode
'PasswordGenerator generator = new PasswordGenerator("User Name From Receipt", "License Key From Receipt");
 
'Trial Mode
Dim generator As New PasswordGenerator()
generator.Config.ValidSpecialCharacters = "@#$"
generator.Config.MinSpecialCharacters = 1
generator.Config.MaxSpecialCharacters = 1
generator.Config.SpecialCharacterPosition = Position.Center
 
Dim password As String = generator.Generate()
Console.WriteLine(password)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PasswordConfig Class
PasswordConfig Members