0

我根据文档搜索存储库。 https://github.com/octokit/octokit.net/blob/master/docs/search.md
如何获取至少一些关于存储库许可证的数据?
我的意思是从此页面获取数据。 在此处输入图像描述

或者文件的内容——“LICENSE.txt”

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

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

1 回答 1

0

尝试这个:

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

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

于 2018-10-09T20:08:12.710 回答