欢迎光临
我们一直在努力

使用Web Service 属性-.NET教程,Web Service开发

建站超值云服务器,限时71元/月

您可以使用 webservice 属性指定命名空间(默认为“http://tempuri.org”)和 xml web services 的说明文本。默认情况下,asp.net web 服务项目模板不生成包含该属性的类。用逗号分隔多个属性。

有关更多信息,请参见asp”>声明 xml web services。

应用 webservice 属性

  • 将 webservice 属性插入类声明的前面并按下面所示设置 namespace 和 description 属性:
     visual basic
        <system.web.services.webservice( _
           namespace:="http://servername/xmlwebservices/", _
           description:="some descriptive text could go here.")> _
        public class service1
        inherits system.web.services.webservice
         implementation code.
        end class
        // c#
        [system.web.services.webservice(
           namespace="http://servername/xmlwebservices/",
           description="some descriptive text could go here.")]
        public class service1 : system.web.services.webservice
        {
        // implementation code.
        }
赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 使用Web Service 属性-.NET教程,Web Service开发
分享到: 更多 (0)