GitHubClient.GetIssueNumAsync 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 a particular issue of a repository
public virtual System.Threading.Tasks.Task<Azure.Connectors.Sdk.GitHub.Models.IssueDetailsModel> GetIssueNumAsync(string repositoryOwner, string repositoryName, int issueNumber, System.Threading.CancellationToken cancellationToken = default);
abstract member GetIssueNumAsync : string * string * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Connectors.Sdk.GitHub.Models.IssueDetailsModel>
override this.GetIssueNumAsync : string * string * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Connectors.Sdk.GitHub.Models.IssueDetailsModel>
Public Overridable Function GetIssueNumAsync (repositoryOwner As String, repositoryName As String, issueNumber As Integer, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IssueDetailsModel)
Parameters
- repositoryOwner
- String
Repository Owner
- repositoryName
- String
Repository Name
- issueNumber
- Int32
Issue Number
- cancellationToken
- CancellationToken
Cancellation token.
Returns
The Get a particular issue of a repository response.
Remarks
Get a particular issue of a repository.