Skip to content

ZeroxCorbin/ARCLManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ARCLManager

This is a C# dll to facilitate asycronous communications using the ARCL protocol.

This repo is required for compilation;

SocketManager

Here are some example applications.

Queue Job Manager Demo
Configuration Manager Demo

Here is an example of using the ARCLConnection;

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;
  }
}

THIS IS A WORK IN PROGRESS.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages