如何获取有关存储库许可证的至少一些数据?

时间:2018-10-09 19:55:13

标签: c# octokit

我根据文档搜索存储库。 https://github.com/octokit/octokit.net/blob/master/docs/search.md
如何获取有关存储库许可证的至少一些数据?
我的意思是从此页面获取数据。 enter image description here

或文件的内容-“ LICENSE.txt”

我需要图中所示任何区域的信息。
我尝试使用代码,但是我不知道如何正确执行

var repoLicen = client.Repository.GetLicenseContents("octokit", "octokit.net");  
var licen = repoLicen.li???  

1 个答案:

答案 0 :(得分:0)

尝试一下:

var licenseContents = github.Repository.GetLicenseContents("octokit", "octokit.net").Result;

GetLicenseContents返回Task,这意味着该方法是异步的。 https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/