mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 20:13:40 +00:00
Merge pull request #844 from khellang/patch-1
Updated docs with new collection
This commit is contained in:
+8
-2
@@ -16,14 +16,20 @@ A common scenario is to search for issues to triage:
|
||||
// you can also specify a search term here
|
||||
var request = new SearchIssuesRequest();
|
||||
|
||||
// you should focus your search to a specific repo
|
||||
// you can add individual repos to focus your search
|
||||
request.Repos.Add("aspnet/dnx");
|
||||
request.Repos.Add("aspnet", "dnvm");
|
||||
|
||||
// or use a series of repositories
|
||||
request.Repos = new Collection<string> {
|
||||
request.Repos = new RepositoryCollection {
|
||||
"aspnet/dnx",
|
||||
"aspnet/dnvm"
|
||||
};
|
||||
|
||||
request.Repos = new RepositoryCollection {
|
||||
{ "aspnet", "dnx" },
|
||||
{ "aspnet", "dnvm" }
|
||||
};
|
||||
```
|
||||
|
||||
There's many other options available here to tweak
|
||||
|
||||
Reference in New Issue
Block a user