public static T Create <T, TProxy>() where TProxy : RpcProxy { return((T)RpcProxyGenerator.CreateProxyInstance(typeof(TProxy), typeof(T))); }
public static Type GetPorxyType <T, TProxy>() where TProxy : RpcProxy { return(RpcProxyGenerator.GetProxyType(typeof(TProxy), typeof(T))); }
MethodInfo IRpcProxy.GetMethodInfo(int index) { return(RpcProxyGenerator.GetMethodInfo(index)); }