Security Note
Passwords in answer files are not encrypted. They are plain text at worst, and base64 encoded
at best. Do not store answer files with sensitive passwords in public locations.
public LocalCredential(
string userName,
string password,
string group = "Administrators"
)
Public Sub New (
userName As String,
password As String,
Optional group As String = "Administrators"
)
public:
LocalCredential(
String^ userName,
String^ password,
String^ group = L"Administrators"
)
new :
userName : string *
password : string *
?group : string
(* Defaults:
let _group = defaultArg group "Administrators"
*)
-> LocalCredential
ArgumentNullException | userName or password or group is . |