Generates a set of pronounceable passwords.

Namespace: System.Extensions.Security
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
public static IList<string> Generate(
	int passwordCount,
	int passwordLength
)
Visual Basic
Public Shared Function Generate ( 
	passwordCount As Integer,
	passwordLength As Integer
) As IList(Of String)
Visual C++
public:
static IList<String^>^ Generate(
	int passwordCount, 
	int passwordLength
)
F#
static member Generate : 
        passwordCount : int * 
        passwordLength : int -> IList<string> 

Parameters

passwordCount
Type: System..::..Int32
The number of passwords to generate.
passwordLength
Type: System..::..Int32
The character length of the passwords.

Return Value

Type: IList<(Of <(<'String>)>)>
A list of passwords as strings.

See Also