我有一个将 pdf 转换为字节的网络服务
public T InvokeMethod<T>(string serviceName, string methodName, params object[] args)
{
object obj = this.m_webServiceAssembly.CreateInstance(serviceName);
Type type = obj.GetType();
return (T)type.InvokeMember(methodName, BindingFlags.InvokeMethod, null, obj, args);
}
当我尝试将 byte[] 解析为 Object[] 数组时,因为当我将值解析到此方法时它接受对象数组时,它有时会抛出异常,将 pdf 转换为 byte[] 需要花费大量时间。
我的要求
I have dynamic web service i wana pass byte[] array into a method how to do this without adding static webreference