This function encodes the given username with the given password.
Namespace: VcClient.TestAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public delegate void Encode(
string userName,
string password
) |
Visual Basic |
---|
Public Delegate Sub Encode ( _
userName As String, _
password As String _
) |
Visual C++ |
---|
public delegate 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