GitHubClient.GetIssuesAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get all issues of a repository
public virtual System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.GitHub.Models.GeneralAPIModel>> GetIssuesAsync(string repositoryOwner, string repositoryName, string milestone = default, string state = default, string assignee = default, string creator = default, string mentioned = default, string labels = default, string sort = default, string direction = default, string since = default, int? perPage = default, int? page = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetIssuesAsync : string * string * string * string * string * string * string * string * string * string * string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.GitHub.Models.GeneralAPIModel>>
override this.GetIssuesAsync : string * string * string * string * string * string * string * string * string * string * string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.GitHub.Models.GeneralAPIModel>>
Public Overridable Function GetIssuesAsync (repositoryOwner As String, repositoryName As String, Optional milestone As String = Nothing, Optional state As String = Nothing, Optional assignee As String = Nothing, Optional creator As String = Nothing, Optional mentioned As String = Nothing, Optional labels As String = Nothing, Optional sort As String = Nothing, Optional direction As String = Nothing, Optional since As String = Nothing, Optional perPage As Nullable(Of Integer) = Nothing, Optional page As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of List(Of GeneralAPIModel))
Parameters
- repositoryOwner
- String
Repository Owner
- repositoryName
- String
Repository Name
- milestone
- String
milestone
- state
- String
state
- assignee
- String
assignee
- creator
- String
creator
- mentioned
- String
mentioned
- labels
- String
labels
- sort
- String
sort
- direction
- String
direction
- since
- String
since
- cancellationToken
- CancellationToken
Cancellation token.
Returns
The Get all issues of a repository response.
Remarks
Get all issues of a repository.