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

Namespace:  FreeFlow.Client
Assembly:  FreeFlow.Client (in FreeFlow.Client.dll) Version: 2.0.0.135

Syntax

C#
public void LogOn(
	string userName,
	string password
)
Visual Basic (Declaration)
Public Sub LogOn ( _
	userName As String, _
	password As String _
)
Visual C++
public:
void LogOn(
	String^ userName, 
	String^ password
)

Parameters

userName
Type: System..::.String
Name of the user.
password
Type: System..::.String
Password.

Examples

This example illustrates logging into the engine.
CopyC#
Connection conn = new FreeFlow.Client.Connection();
conn.HttpServer = "my server";
conn.Engine = "my server";
conn.LogOn("user name", "password");
CopyVB.NET
Dim conn As New FreeFlow.Client.Connection
conn.HttpServer = "my server"
conn.Engine = "my server"
conn.LogOn("user name", "password")

See Also