Beispiel #1
0
        /// <summary>
        /// Get a response line from the server
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <returns></returns>
        JSONResponse <T> GetResponse <T>()
        {
            string Line = Rx.ReadLine();

            return(JSONResponse <T> .FromString(Line));
        }
 JSONResponse <T> GetResponse <T>()
 {
     return(JSONResponse <T> .FromString(Rx.ReadLine()));
 }