首页
社区
课程
招聘
[求助]求教Reflector反编译的代码
发表于: 2012-12-21 12:30 5336

[求助]求教Reflector反编译的代码

2012-12-21 12:30
5336
下面是Reflector反编译的一段代码,看不太懂,请各位高手帮忙看一看,非常感谢!另外,下面有些代码是被[]包括的,请问[]是什么意思呢?!

        [return: XmlElement(DataType="base64Binary", IsNullable=true)]
        [SoapDocumentMethod("http://tempuri.org/IService1/zcCenter", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
        public byte[] zcCenter([XmlElement(DataType="base64Binary", IsNullable=true)] byte[] Reginfo)
        {
            return (byte[]) this.Invoke("zcCenter", new object[] { Reginfo })[0];
        }

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 288
活跃值: (112)
能力值: ( LV12,RANK:290 )
在线值:
发帖
回帖
粉丝
2
像是WebService的stub代码。

调用Webservice上的函数 zcCenter
2012-12-21 16:23
0
雪    币: 236
活跃值: (25)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
非常感谢!
2012-12-23 15:05
0
游客
登录 | 注册 方可回帖
返回
//