| Visual Basic (Declaration) | |
|---|---|
Public Overloads Sub Login( _ ByVal username As String, _ ByVal clientUsername As String _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Rlogin Dim username As String Dim clientUsername As String instance.Login(username, clientUsername) | |
| C# | |
|---|---|
public void Login( string username, string clientUsername ) | |
| Managed Extensions for C++ | |
|---|---|
public: void Login( string* username, string* clientUsername ) | |
| C++/CLI | |
|---|---|
public: void Login( String^ username, String^ clientUsername ) | |
Parameters
- username
- The username sent during login.
- clientUsername
- Login name of the user on the client host.
This method should be used after the Connect method completes successfully.
The username is the login name of the user as known on the server. The clientUsername may be used if the client username differs from the server username.
Target Platforms: Microsoft .NET Framework 2.0