直接给代码:
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中的属性
原文地址:http://www.cnblogs.com/wyang/p/3752614.html