This commit is contained in:
Brendan Forster
2015-07-19 08:42:14 +09:30
parent d1bd50cdf3
commit f3fab080f9

View File

@@ -10,11 +10,10 @@ on the GitHub or GitHub Enterprise server:
## Search Issues ## Search Issues
You can search for issues containing a given phrase across many A common scenario is to search for issues to triage:
repositories:
```csharp ```csharp
// searching without specifying a term // you can also specify a search term here
var request = new SearchIssuesRequest(); var request = new SearchIssuesRequest();
// you should focus your search to a specific repo // you should focus your search to a specific repo
@@ -63,7 +62,7 @@ request.State = ItemState.All;
request.State = ItemState.Closed; request.State = ItemState.Closed;
``` ```
And there's other options available for how the results are returned: There's other options available to control how the results are returned:
```csharp ```csharp
request.SortField = IssueSearchSort.Created; request.SortField = IssueSearchSort.Created;