C#调用WebServers用法

第一步:建立C#winform程序 (略去)

C#调用WebServers用法_第1张图片

第二步:在自己建的项目右键添加 服务引用 -高级-Web引用


第三步:添加Web引用


第四步:完成就在工程中了


第五步在单击事件中调用:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;


namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }


        private void button1_Click(object sender, EventArgs e)
        {
            //MessageBox("asd");
           
            WindowsFormsApplication1.cn.com.webxml.www.qqOnlineWebService aa = new WindowsFormsApplication1.cn.com.webxml.www.qqOnlineWebService();
           
            MessageBox.Show( aa.qqCheckOnline(""));//填空默认腾讯的一个QQ 会返回在线
           
            


        }
    }
}


参考资料:

http://www.cnblogs.com/nianyuwen/archive/2012/05/15/2500932.html
http://www.cnblogs.com/ycxyyzw/archive/2011/08/24/2151794.html
http://www.cnblogs.com/denylau/archive/2010/07/23/1783530.html
http://www.cnblogs.com/lm3515/archive/2010/10/26/1861735.html

你可能感兴趣的:(C#调用WebServers用法)