Esempio n. 1
0
        public NetworkServices(ServerMW windowForm)
        {
            this.serverMW = windowForm;
            startListening();
            STCB = new ServerToClientBridge(this);
            DS   = new DatabaseServices(this);

            DS.executeQuery();
        }
Esempio n. 2
0
        public NetworkServices(ServerMW windowForm)
        {
            this.serverMW = windowForm;
            startListening();
            STCB = new ServerToClientBridge(this);
            DS = new DatabaseServices(this);

            DS.executeQuery();
        }
 public fileTransferProtocol(ServerMW serverMW)
 {
     this.serverMW = serverMW;
     t1 = new Thread(new ThreadStart(StartListening));
     t1.Start();
 }
 public fileTransferProtocol(ServerMW serverMW)
 {
     this.serverMW = serverMW;
     t1            = new Thread(new ThreadStart(StartListening));
     t1.Start();
 }