protected override string RunInBackground(params string[] @params)
            {
                string stream    = null;
                string urlString = @params[0];

                Helper.Helper http = new Helper.Helper();
                stream = http.GetHTTPData(urlString);
                return(stream);
            }
示例#2
0
            protected override string RunInBackground(params string[] @params)
            {
                string stream    = null;
                string urlString = @params[0];

                Helper.Helper http = new Helper.Helper();
                //urlString = Common.Common.APIRequest(lat.ToString(), lng.ToString());
                stream = http.GetHTTPData(urlString);
                return(stream);
            }