Exemple #1
0
 public void Disconnect()
 {
     if (ConnectLogic != null)
     {
         ConnectLogic.Dispose();
         ConnectLogic = null;
         IsConnected  = false;
     }
 }
Exemple #2
0
        public void SetupBuilder()
        {
            Disconnect();

            ConnectLogic = new FdkConnectLogic(Address, Login, Password)
            {
                RootPath = Path
            };

            ConnectLogic.TradeWrapper.SetupBuilder(Address, Login, Password, this.Path);
        }