码迷,mamicode.com
首页 > Web开发 > 详细

动态调用WebService时动态获取返回Class中的属性

时间:2014-05-26 18:21:13      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:c   class   http   a   get      

直接给代码:

var ret = HTTPS.WSHelper.InvokeWebService("WebService URL", "MethodName", object[] args);
var type = ret.GetType();
var propertyinfo = type.GetProperty("result");
if (propertyinfo == null)
{
       throw new Exception("不包含result属性!");
}

var value = propertyinfo.GetValue(ret, null);

 

其中的动态调用WebService的类博客园中有很多详细的代码,可以任意搜索,第一行中的InvokeWebService就是其中的的主要方法,代码就不粘贴了。

动态调用WebService时动态获取返回Class中的属性,布布扣,bubuko.com

动态调用WebService时动态获取返回Class中的属性

标签:c   class   http   a   get      

原文地址:http://www.cnblogs.com/wyang/p/3752614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!