public static IEnumerable <IFileNode> GetFiles(this IGitHubClient gitHubClient, IRepository repository, SearchOption searchOption = SearchOption.TopDirectoryOnly)
 {
     return(gitHubClient.GetFiles(repository.Url, searchOption));
 }
 public static IEnumerable <IFileNode> GetFiles(this IGitHubClient gitHubClient, string owner, string name, SearchOption searchOption = SearchOption.TopDirectoryOnly)
 {
     return(gitHubClient.GetFiles(new Repository(owner, name).Url, searchOption));
 }
 public static IEnumerable <IFileNode> GetFiles(this IGitHubClient gitHubClient, Uri uri, SearchOption searchOption = SearchOption.TopDirectoryOnly)
 {
     return(gitHubClient.GetFiles(uri.AbsoluteUri, searchOption));
 }