public T GetSourceObject <T>(string path, bool isPost = true, bool useCookie = true)
        {
            string content = GetSourceContent(path, isPost, useCookie);

            return(JsonUtil.Deserialize <T>(content));
        }