GitHubLib.CodeSearchLink.InterpretResponse C# (CSharp) Method

InterpretResponse() public static method

public static InterpretResponse ( GithubDocument document ) : CodeSearchResults
document GithubDocument
return CodeSearchResults
        public static CodeSearchResults InterpretResponse(GithubDocument document)
        {
            var results = new CodeSearchResults();

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

            return results;
        }
        public class CodeSearchResults