Ejemplo n.º 1
0
        public string Post(string uri)
        {
            string arg;

            using (StreamReader sr = new StreamReader(Request.Body, Encoding.UTF8))
            {
                arg = sr.ReadToEnd();
            }
            return(RpcServer.Invoke(uri, arg));
        }