• C# Webservice中如何实现方法重载--(方法名同名时出现的问题)


    本文摘抄自:http://blog.sina.com.cn/s/blog_53b720bb0100voh3.html

    1。Webservice中的方法重载问题
    (1)在要重载的WebMethod上打个MessageName标签
    比如:
    [WebMethod(MessageName = "HelloWorld1")]
    public string HelloWorld(){
        return "HelloWorld";
    }

    [WebMethod(MessageName = "HelloWorld2")]
    public string HelloWorld(string msg){
        return msg + "HelloWorld";
    }
    (2)此外还要在class上修改WebServiceBinding特性,如下:
    [WebServiceBinding(ConformsTo = WsiProfiles.None)]
        public class UploadService : System.Web.Services.WebService
        {
            ...
        }

    2.无法序列化的对象如何作为参数传递
    比如:
    void TestMethod(MyObject p){
        ...
    }
    这里MyObject是一个自定义类,并且无法序列化,如果你的WebService里有这样的方法,那么在浏览asmx时,会提示“MyObject无法序列化,因为没有无参数的构架函数”之类,解决办法有二个:
    (a)修改MyObject,使其序列化,但如果MyObject已经封装成程序集(dll)无法修改的话,请看第二种方法
    (b)将void TestMethod(MyObject p)修改为

    void TestMethod(Object t){
        MyObject p = t as MyObject
        ...
    }
    即把Object做为参数传入,然后在方法内部再Cast为MyObject,虽然这要增加了额外的拆箱,封箱操作,但总比不能用要好

    另外,讲几个小技巧,如果要给方法增加描述说明,让引用webService的人更容易看懂,可以在[WebMethod(MessageName = "HelloWorld1")]后再增加一个Desciption="xxx",即
    [WebMethod(MessageName = "HelloWorld1", Description = "描述内容,支持Html语法哦")]

    同样整个WebService也可以增加描述,在class上增加Desciption属性,即
        [WebService(Namespace = "http://www.yourdomain.com/",Description="服务说明,支持html语法")]
        [WebServiceBinding(ConformsTo = WsiProfiles.None)]
        public class UploadService : System.Web.Services.WebService
        {
            ...
        }

  • 相关阅读:
    结构体后面不加 ; 的后果。
    swap的两种错误写法
    rewind和fseek作用分析
    16个get函数的用法。
    枚举的简单使用。
    小知识点
    网线头的做法
    内存和寄存器
    linux下service mongod start启动报错
    appium上下文切换、webview调试以及chromedriver/键盘等报错问题解决
  • 原文地址:https://www.cnblogs.com/a-mumu/p/4465064.html
Copyright © 2020-2023  润新知