Login() public method

public Login ( ) : void
return void
Ejemplo n.º 1
0
        public Service1()
        {
            InitializeComponent();

            server = new ProcessingServer();
            server.Login();

            dataServer = new LocalStorageServer();
        }
Ejemplo n.º 2
0
        private static void StartServers()
        {
            deviceServer = new ProcessingServer();
            deviceServer.Login();
            deviceServer.Start();

            dataServer = new LocalStorageServer();
            dataServer.Start();
        }