当前位置: 代码迷 >> Web Service >> 入门级有关问题——给WebMethod方法添加参数描述
  详细解决方案

入门级有关问题——给WebMethod方法添加参数描述

热度:1163   发布时间:2016-05-02 03:11:45.0
入门级问题——给WebMethod方法添加参数描述
C# code
        /// <summary>        /// 根据用户所进入的系统名称和用户IDCode返回该用户的基本信息        /// </summary>        /// <param name="IDCode">登录人员的域账户</param>        /// <param name="SysName">登录系统名称(注:应与MemberManager系统中的系统名称一致)</param>        /// <param name="Mark">0:该成员无进入系统权限  1:可以进入该系统 2:该系统现在已经停止使用 3:该成员现在无进入权限了</param>        /// <returns></returns>        [WebMethod]        public DataTable GetMemberBase(string IDCode, string SysName, out int Mark)        {            DataTable result = null;            Mark = 0;            return result;        } 

类似出现下面这种描述 肿么写
http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx;


getSupportCityDataset 


获得支持的城市/地区名称和与之对应的ID
输入参数:theRegionCode = 省市、国家ID或名称,返回数据:DataSet。






------解决方案--------------------
By default DefaultWsdlHelpGenerator.aspx is called to generate the "help" page. You can set another (or modified) template with the wsdlHelpGenerator Element in your web.config file.

它的意思是说通过 wsdlHelpGenerator 配置一个 HelpGenerator.aspx 去形成帮助文档。
因为 .net 自带的这个功能有限。