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