Generates a set of pronounceable passwords.
Namespace: System.Extensions.SecurityAssembly: 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>
|
Return Value
Type:
IList<(Of <(<'String>)>)>A list of passwords as strings.
See Also