|
PasswordGeneratorGeneratePassword(Int32, Int32) Method
|
Generates a password with length between the given
minLength and maxLength.
Namespace: GSF.Security.CryptographyAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic string GeneratePassword(
int minLength,
int maxLength
)
Public Function GeneratePassword (
minLength As Integer,
maxLength As Integer
) As String
public:
String^ GeneratePassword(
int minLength,
int maxLength
)
member GeneratePassword :
minLength : int *
maxLength : int -> string
function GeneratePassword(minLength, maxLength);
View SourceParameters
- minLength Int32
- The minimum length of the generated password.
- maxLength Int32
- The maximum length of the generated password.
Return Value
StringA randomly generated password.
See Also