I have this code :
var proxy = XmlRpcProxyGen.Create<IMessageRpc>();
var proxy2 = XmlRpcProxyGen.Create<ITestRpc>();
Create prototype is XmlRpcProxyGen.Create<T>
I would like use a function like this :
public object GetProxy(XXX)
{
return mlRpcProxyGen.Create<XXX>();
}
1 Answer