GitHubClient.GetOrgReposAsync 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.
Lists all public repositories for an organization
public virtual System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.GitHub.Models.GeneralAPIModel>> GetOrgReposAsync(string repositoryOwner, string type = default, string sort = default, string direction = default, int? perPage = default, int? page = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetOrgReposAsync : 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.GetOrgReposAsync : 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 GetOrgReposAsync (repositoryOwner As String, Optional type As String = Nothing, Optional sort As String = Nothing, Optional direction 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
- type
- String
type
- sort
- String
sort
- direction
- String
direction
- cancellationToken
- CancellationToken
Cancellation token.
Returns
The Lists all public repositories for an organization response.
Remarks
Lists all public repositories for an organization.