NET Password Generator
MaxLength Property
Example 



KellermanSoftware.NetPasswordGenerator Namespace > PasswordConfig Class : MaxLength Property
The maximum length of characters to generate for a password. Default is 20
Syntax
'Declaration
 
Public Property MaxLength As Integer
'Usage
 
Dim instance As PasswordConfig
Dim value As Integer
 
instance.MaxLength = value
 
value = instance.MaxLength
public int MaxLength {get; set;}
public:
property int MaxLength {
   int get();
   void set (    int value);
}
Example
//Licensed Mode
//PasswordGenerator generator = new PasswordGenerator("User Name From Receipt", "License Key From Receipt");
 
//Trial Mode
PasswordGenerator generator = new PasswordGenerator();
generator.Config.MinLength = 15;
generator.Config.MaxLength = 20;
 
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.MinLength = 15
generator.Config.MaxLength = 20
 
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