This function encodes the given username with the given password and stores it on the windows credential manager.
Namespace: VcClientAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public static void Encode(
string userName,
string password
) |
Visual Basic |
---|
Public Shared Sub Encode ( _
userName As String, _
password As String _
) |
Visual C++ |
---|
public:
static void Encode(
String^ userName,
String^ password
) |
Parameters
- userName
- Type: String
The username that needs to be encoded.
- password
- Type: String
The password corresponding to the username that needs to be encoded.
See Also