首页 > 代码库 > 动态调用WebService时动态获取返回Class中的属性

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

直接给代码:

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 = http://www.mamicode.com/propertyinfo.GetValue(ret, null);

 

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