我根据文档搜索存储库。
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???
答案 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/