Exemplo n.º 1
0
        public GETDownloader(string getURI, GETDelegate callback)
        {
            _uri = getURI;
            _delegate = callback;

            Thread t = new Thread(this.WorkerThread);
            t.Start();
        }
Exemplo n.º 2
0
        public GETDownloader(string getURI, GETDelegate callback)
        {
            _uri      = getURI;
            _delegate = callback;

            Thread t = new Thread(this.WorkerThread);

            t.Start();
        }