WebService 的Description 属性说明(转)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebService 的Description 属性说明(转)相关的知识,希望对你有一定的参考价值。

转自:http://exception.thinksaas.cn/0/173/173623.html 

在WebMethod的description 中可使用超文本,

举例:

技术分享

如上图中,红框类的WebService的接口说明是如何实现的?
1、加粗字体的标题
2、换行
3、链接
4、图标

这是服务接口http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
------解决思路----------------------
    [WebService(Namespace = "http://tempuri.org/",Description="说明1")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    // [System.Web.Script.Services.ScriptService]
    public class WebService1 : System.Web.Services.WebService
    {

        [WebMethod(Description="说明2")]
        public string HelloWorld()
        {
            return "Hello World";
        }
    }
------解决思路----------------------
Description里面可以放超文本

 [WebMethod(Description="<h1>This is a test method</h1><br /> It returns hello world </br> enjoy it. <br/><br/> <a href=‘http://www.microsoft.com‘>test link</a>")]
        public string HelloWorld()
        {
            return "Hello World";
        }



























以上是关于WebService 的Description 属性说明(转)的主要内容,如果未能解决你的问题,请参考以下文章

webservice通用客户端代码

WebService入门

根据Webservice地址,动态传入参数(Webservice代理类)

将文件转成byte[]文件属组

Java调用WebService之Axis实现

WebService之CXF注解之四(測试类)