wp7分析IP知道你的位置

   
   
       
           
           
       


       
       
           
           
       


       
       
           
               
               
           
           
               
                   
                   
                   
               


               
               
               
           
           
               
               
               
           
       

   

 

后台代码:

        private void onQuery(object sender, RoutedEventArgs e)
        {
            txbResult.Text = "";
            // 第一步,实例化客户端代理类
            IPQueryWebService.IpAddressSearchWebServiceSoapClient MyClient = new IPQueryWebService.IpAddressSearchWebServiceSoapClient();
            // 第二步,绑定回调事件
            MyClient.getCountryCityByIpCompleted += (s, arg) =>
            {
                // 取得结果
                txbTip.Text = "请求完成。";
                if (arg.Error != null)
                {
                    txtIP.Text = string.Format("错误:{0}", arg.Error.Message);
                    return;
                }
                string[] res = arg.Result;
                if (res != null)
                {
                    if (res.Length > 1)
                    {
                        txbResult.Text = string.Format("结果查询:{0}", res[1]);
                    }
                }
            };
            // 第三步,调用异步方法
            txbTip.Text = "正在请求,请等候……";
            MyClient.getCountryCityByIpAsync(txtIP.Text);
        }

记得添加服务引用

http://webservice.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx

转载于:https://www.cnblogs.com/qiqiBoKe/archive/2013/06/10/3130478.html

你可能感兴趣的:(wp7分析IP知道你的位置)