FreeFlow class library

Connection.LogOn Method (String, String)

Logs in the specified user to the engine. This attempts to use eUser authentication.

[Visual Basic]
Overloads Public Sub LogOn( _
   ByVal userName As String, _
   ByVal password As String _
)
[C#]
public void LogOn(
   string userName,
   string password
);

Parameters

userName
Name of the user.
password
Password.

Example

This example illustrates logging into the engine.

[C#]
Connection conn = new FreeFlow.Client.Connection();
conn.HttpServer = "my server";
conn.Engine = "my server";
conn.LogOn("user name", "password");
[Visual Basic]
Dim conn As New FreeFlow.Client.Connection
conn.HttpServer = "my server"
conn.Engine = "my server"
conn.LogOn("user name", "password")

See Also

Connection Class | FreeFlow.Client Namespace | Connection.LogOn Overload List