Logs in the specified user to the engine. This attempts to use eUser authentication.
Namespace:
FreeFlow.ClientAssembly: FreeFlow.Client (in FreeFlow.Client.dll) Version: 2.0.0.135
Syntax
Examples
This example illustrates logging into the engine.
CopyC#
CopyVB.NET
Connection conn = new FreeFlow.Client.Connection(); conn.HttpServer = "my server"; conn.Engine = "my server"; conn.LogOn("user name", "password");
Dim conn As New FreeFlow.Client.Connection conn.HttpServer = "my server" conn.Engine = "my server" conn.LogOn("user name", "password")