Queue Job Manager Demo
Configuration Manager Demo
using ARCL;
using ARCLTypes;
ARCLConnection Connection;
private bool Connect()
{
string connectString = ARCLConnection.GenerateConnectionString("192.168.1.1", 7171, "adept");
if (ARCLConnection.ValidateConnectionString(connectString))
{
Connection = new ARCLConnection(connectString);
}
else
{
return false;
}
if (Connection.Connect(true))
{
//Connected and logged in. Do work...
return true;
}
else
{
return false;
}
}