Ejemplo n.º 1
0
        public static RpcServer Create(RpcServerOptions options)
        {
            var result = new RpcServer(options);

            result.Startconsuming();

            return(result);
        }
Ejemplo n.º 2
0
 private static string DefaultCallback(string inputString, RpcServer rpcServer)
 {
     return(inputString);
 }