示例#1
0
        public GETDownloader(string getURI, GETDelegate callback)
        {
            _uri = getURI;
            _delegate = callback;

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

            Thread t = new Thread(this.WorkerThread);

            t.Start();
        }