コード例 #1
0
        public static CodeSearchResults InterpretResponse(GithubDocument document)
        {
            var results = new CodeSearchResults();

            results.Count = (int)document.Properties["total_count"]; 

            return results;
        }
コード例 #2
0
ファイル: CodeSearchLink.cs プロジェクト: jchannon/Tavis.Link
        public static CodeSearchResults InterpretResponse(GithubDocument document)
        {
            var results = new CodeSearchResults();

            results.Count = (int)document.Properties["total_count"];

            return(results);
        }