GitHubLib.CodeSearchLink.InterpretResponse C# (CSharp) Метод

InterpretResponse() публичный статический Метод

public static InterpretResponse ( GithubDocument document ) : CodeSearchResults
document GithubDocument
Результат CodeSearchResults
        public static CodeSearchResults InterpretResponse(GithubDocument document)
        {
            var results = new CodeSearchResults();

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

            return results;
        }
        public class CodeSearchResults