Пример #1
0
        public POSTHandler(string postURI, string content, POSTDelegate callback)
        {
            _uri = postURI;
            _content = content;
            _delegate = callback;

            Thread t = new Thread(this.WorkerThread);
            t.Start();
        }
Пример #2
0
        public POSTHandler(string postURI, string content, POSTDelegate callback)
        {
            _uri      = postURI;
            _content  = content;
            _delegate = callback;

            Thread t = new Thread(this.WorkerThread);

            t.Start();
        }