1

octokit.net

To filter the query by language I do this

var request = new SearchRepositoriesRequest("mvc client side framework")
{
   // how about we restrict the language the library is written in?
    Language = Language.JavaScript
}

How to make all languages ​​appear in the request again?
Something like:

Language = Language.All
Cœur
  • 37,241
  • 25
  • 195
  • 267

1 Answers1

2

Property Language is nullable, so maybe Language = null?

smolchanovsky
  • 1,775
  • 2
  • 15
  • 29
  • Are you familiar with "octokit.net"? Could you help me with a question - `https://stackoverflow.com/questions/52728418/how-to-get-at-least-some-data-on-the-repository-license` and link - `https://github.com/octokit/octokit.net/issues/1881` – user9832524 Oct 09 '18 at 19:58