public static List <Question> search(this API_StackOverflow soApi, string searchText)
        {
            var tagged    = new List <string>();
            var notTagged = new List <string>();
            var sort      = "";
            var order     = "";

            return(soApi.search(searchText, tagged, notTagged, sort, order));
        }
 public static List <Question> search(this API_StackOverflow soApi, string searchText, List <string> tagged, List <string> notTagged, string sort, string order)
 {
     return(ApiProxy.SearchQuestions(searchText, tagged, notTagged, sort, order).toList());
 }
 public static API_StackOverflow disableGzip(this API_StackOverflow soApi)
 {
     ApiProxy.DownloadUsingGzipEncoding = false;
     return(soApi);
 }