예제 #1
0
 public ACTServer(LanPlugin plugin)
 {
     _plugin = plugin;
     _active = false;
     _clients = new List<TcpInfo>();
     _queue = new Queue<string>();
     _signal = new ManualResetEvent(false);
 }
예제 #2
0
 public ACTServer(LanPlugin plugin)
 {
     _plugin  = plugin;
     _active  = false;
     _clients = new List <TcpInfo>();
     _queue   = new Queue <string>();
     _signal  = new ManualResetEvent(false);
 }
예제 #3
0
        public MainTabPage(LanPlugin plugin)
        {
            InitializeComponent();

            _plugin = plugin;
            _plugin.Controller.ActiveUpdate += Controller_ActiveUpdate;
            Controller_ActiveUpdate(this, null);
            _plugin.Controller.ModeUpdate += Controller_ModeUpdate;
            Controller_ModeUpdate(this, null);

            _AddLogUpdate = addLog;

            _xmlSettings = new SettingsSerializer(this);
            LoadSettings();
            if (textBoxPort.Text.Length == 0)
                textBoxPort.Text = "5000";
        }
예제 #4
0
        public MainTabPage(LanPlugin plugin)
        {
            InitializeComponent();

            _plugin = plugin;
            _plugin.Controller.ActiveUpdate += Controller_ActiveUpdate;
            Controller_ActiveUpdate(this, null);
            _plugin.Controller.ModeUpdate += Controller_ModeUpdate;
            Controller_ModeUpdate(this, null);

            _AddLogUpdate = addLog;

            _xmlSettings = new SettingsSerializer(this);
            LoadSettings();
            if (textBoxPort.Text.Length == 0)
            {
                textBoxPort.Text = "5000";
            }
        }
예제 #5
0
 public ACTClient(LanPlugin plugin)
 {
     _plugin = plugin;
 }
예제 #6
0
 public ACTClient(LanPlugin plugin)
 {
     _plugin = plugin;
 }
예제 #7
0
 public TcpController(LanPlugin plugin)
 {
     _plugin = plugin;
 }
예제 #8
0
 public TcpController(LanPlugin plugin)
 {
     _plugin = plugin;
 }