Show / Hide Table of Contents

Class DevopsPaginators

Collection of helper methods that can be used to provide an enumerator interface to any list operations of Devops where multiple pages of data may be fetched. Two styles of enumerators are supported:

  • Enumerating over the Response objects returned by the list operation. These are referred to as ResponseEnumerators, and the methods are suffixed with ResponseEnumerator. For example: listUsersResponseEnumerator.
  • Enumerating over the resources/records being listed. These are referred to as RecordEnumerators, and the methods are suffixed with RecordEnumerator. For example: listUsersRecordEnumerator.
These enumerators abstract away the need to write code to manually handle pagination via looping and using the page tokens. They will automatically fetch more data from the service when required.

As an example, if we were using the ListUsers operation in IdentityService, then the iterator returned by calling a ResponseEnumerator method would iterate over the ListUsersResponse objects returned by each ListUsers call, whereas the enumerables returned by calling a RecordEnumerator method would iterate over the User records and we don't have to deal with ListUsersResponse objects at all. In either case, pagination will be automatically handled so we can iterate until there are no more responses or no more resources/records available.
Inheritance
object
DevopsPaginators
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class DevopsPaginators

Constructors

DevopsPaginators(DevopsClient)

Declaration
public DevopsPaginators(DevopsClient client)
Parameters
Type Name Description
DevopsClient client

Methods

ListAuthorsRecordEnumerator(ListAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositoryAuthorSummary objects contained in responses from the ListAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositoryAuthorSummary> ListAuthorsRecordEnumerator(ListAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositoryAuthorSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListAuthorsResponseEnumerator(ListAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListAuthorsResponse> ListAuthorsResponseEnumerator(ListAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAuthorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildPipelineStagesRecordEnumerator(ListBuildPipelineStagesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the BuildPipelineStageSummary objects contained in responses from the ListBuildPipelineStages operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<BuildPipelineStageSummary> ListBuildPipelineStagesRecordEnumerator(ListBuildPipelineStagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildPipelineStagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BuildPipelineStageSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildPipelineStagesResponseEnumerator(ListBuildPipelineStagesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListBuildPipelineStages operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListBuildPipelineStagesResponse> ListBuildPipelineStagesResponseEnumerator(ListBuildPipelineStagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildPipelineStagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBuildPipelineStagesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildPipelinesRecordEnumerator(ListBuildPipelinesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the BuildPipelineSummary objects contained in responses from the ListBuildPipelines operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<BuildPipelineSummary> ListBuildPipelinesRecordEnumerator(ListBuildPipelinesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildPipelinesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BuildPipelineSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildPipelinesResponseEnumerator(ListBuildPipelinesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListBuildPipelines operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListBuildPipelinesResponse> ListBuildPipelinesResponseEnumerator(ListBuildPipelinesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildPipelinesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBuildPipelinesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildRunSnapshotsRecordEnumerator(ListBuildRunSnapshotsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the BuildRunSnapshotSummary objects contained in responses from the ListBuildRunSnapshots operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<BuildRunSnapshotSummary> ListBuildRunSnapshotsRecordEnumerator(ListBuildRunSnapshotsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildRunSnapshotsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BuildRunSnapshotSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildRunSnapshotsResponseEnumerator(ListBuildRunSnapshotsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListBuildRunSnapshots operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListBuildRunSnapshotsResponse> ListBuildRunSnapshotsResponseEnumerator(ListBuildRunSnapshotsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildRunSnapshotsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBuildRunSnapshotsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildRunsRecordEnumerator(ListBuildRunsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the BuildRunSummary objects contained in responses from the ListBuildRuns operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<BuildRunSummary> ListBuildRunsRecordEnumerator(ListBuildRunsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildRunsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BuildRunSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListBuildRunsResponseEnumerator(ListBuildRunsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListBuildRuns operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListBuildRunsResponse> ListBuildRunsResponseEnumerator(ListBuildRunsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBuildRunsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBuildRunsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListCommitDiffsRecordEnumerator(ListCommitDiffsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DiffSummary objects contained in responses from the ListCommitDiffs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DiffSummary> ListCommitDiffsRecordEnumerator(ListCommitDiffsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCommitDiffsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DiffSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListCommitDiffsResponseEnumerator(ListCommitDiffsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListCommitDiffs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListCommitDiffsResponse> ListCommitDiffsResponseEnumerator(ListCommitDiffsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCommitDiffsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCommitDiffsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListCommitsRecordEnumerator(ListCommitsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositoryCommitSummary objects contained in responses from the ListCommits operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositoryCommitSummary> ListCommitsRecordEnumerator(ListCommitsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCommitsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositoryCommitSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListCommitsResponseEnumerator(ListCommitsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListCommits operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListCommitsResponse> ListCommitsResponseEnumerator(ListCommitsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCommitsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCommitsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListConnectionsRecordEnumerator(ListConnectionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the ConnectionSummary objects contained in responses from the ListConnections operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ConnectionSummary> ListConnectionsRecordEnumerator(ListConnectionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListConnectionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ConnectionSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListConnectionsResponseEnumerator(ListConnectionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListConnections operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListConnectionsResponse> ListConnectionsResponseEnumerator(ListConnectionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListConnectionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListConnectionsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployArtifactsRecordEnumerator(ListDeployArtifactsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DeployArtifactSummary objects contained in responses from the ListDeployArtifacts operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DeployArtifactSummary> ListDeployArtifactsRecordEnumerator(ListDeployArtifactsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployArtifactsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DeployArtifactSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployArtifactsResponseEnumerator(ListDeployArtifactsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListDeployArtifacts operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListDeployArtifactsResponse> ListDeployArtifactsResponseEnumerator(ListDeployArtifactsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployArtifactsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDeployArtifactsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployEnvironmentsRecordEnumerator(ListDeployEnvironmentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DeployEnvironmentSummary objects contained in responses from the ListDeployEnvironments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DeployEnvironmentSummary> ListDeployEnvironmentsRecordEnumerator(ListDeployEnvironmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployEnvironmentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DeployEnvironmentSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployEnvironmentsResponseEnumerator(ListDeployEnvironmentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListDeployEnvironments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListDeployEnvironmentsResponse> ListDeployEnvironmentsResponseEnumerator(ListDeployEnvironmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployEnvironmentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDeployEnvironmentsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployPipelinesRecordEnumerator(ListDeployPipelinesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DeployPipelineSummary objects contained in responses from the ListDeployPipelines operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DeployPipelineSummary> ListDeployPipelinesRecordEnumerator(ListDeployPipelinesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployPipelinesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DeployPipelineSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployPipelinesResponseEnumerator(ListDeployPipelinesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListDeployPipelines operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListDeployPipelinesResponse> ListDeployPipelinesResponseEnumerator(ListDeployPipelinesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployPipelinesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDeployPipelinesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployStagesRecordEnumerator(ListDeployStagesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DeployStageSummary objects contained in responses from the ListDeployStages operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DeployStageSummary> ListDeployStagesRecordEnumerator(ListDeployStagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployStagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DeployStageSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeployStagesResponseEnumerator(ListDeployStagesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListDeployStages operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListDeployStagesResponse> ListDeployStagesResponseEnumerator(ListDeployStagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeployStagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDeployStagesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeploymentsRecordEnumerator(ListDeploymentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DeploymentSummary objects contained in responses from the ListDeployments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DeploymentSummary> ListDeploymentsRecordEnumerator(ListDeploymentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeploymentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DeploymentSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDeploymentsResponseEnumerator(ListDeploymentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListDeployments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListDeploymentsResponse> ListDeploymentsResponseEnumerator(ListDeploymentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDeploymentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDeploymentsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListMirrorRecordsRecordEnumerator(ListMirrorRecordsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositoryMirrorRecordSummary objects contained in responses from the ListMirrorRecords operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositoryMirrorRecordSummary> ListMirrorRecordsRecordEnumerator(ListMirrorRecordsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMirrorRecordsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositoryMirrorRecordSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListMirrorRecordsResponseEnumerator(ListMirrorRecordsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListMirrorRecords operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListMirrorRecordsResponse> ListMirrorRecordsResponseEnumerator(ListMirrorRecordsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMirrorRecordsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListMirrorRecordsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPathsRecordEnumerator(ListPathsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositoryPathSummary objects contained in responses from the ListPaths operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositoryPathSummary> ListPathsRecordEnumerator(ListPathsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPathsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositoryPathSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPathsResponseEnumerator(ListPathsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPaths operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPathsResponse> ListPathsResponseEnumerator(ListPathsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPathsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPathsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListProjectCommitAnalyticsAuthorsRecordEnumerator(ListProjectCommitAnalyticsAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the CommitAnalyticsAuthorSummary objects contained in responses from the ListProjectCommitAnalyticsAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<CommitAnalyticsAuthorSummary> ListProjectCommitAnalyticsAuthorsRecordEnumerator(ListProjectCommitAnalyticsAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProjectCommitAnalyticsAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<CommitAnalyticsAuthorSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListProjectCommitAnalyticsAuthorsResponseEnumerator(ListProjectCommitAnalyticsAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListProjectCommitAnalyticsAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListProjectCommitAnalyticsAuthorsResponse> ListProjectCommitAnalyticsAuthorsResponseEnumerator(ListProjectCommitAnalyticsAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProjectCommitAnalyticsAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListProjectCommitAnalyticsAuthorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListProjectsRecordEnumerator(ListProjectsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the ProjectSummary objects contained in responses from the ListProjects operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ProjectSummary> ListProjectsRecordEnumerator(ListProjectsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProjectsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ProjectSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListProjectsResponseEnumerator(ListProjectsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListProjects operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListProjectsResponse> ListProjectsResponseEnumerator(ListProjectsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProjectsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListProjectsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListProtectedBranchesRecordEnumerator(ListProtectedBranchesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the ProtectedBranchSummary objects contained in responses from the ListProtectedBranches operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ProtectedBranchSummary> ListProtectedBranchesRecordEnumerator(ListProtectedBranchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProtectedBranchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ProtectedBranchSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListProtectedBranchesResponseEnumerator(ListProtectedBranchesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListProtectedBranches operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListProtectedBranchesResponse> ListProtectedBranchesResponseEnumerator(ListProtectedBranchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProtectedBranchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListProtectedBranchesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestActivitiesRecordEnumerator(ListPullRequestActivitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PullRequestActivitySummary objects contained in responses from the ListPullRequestActivities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PullRequestActivitySummary> ListPullRequestActivitiesRecordEnumerator(ListPullRequestActivitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestActivitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PullRequestActivitySummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestActivitiesResponseEnumerator(ListPullRequestActivitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequestActivities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestActivitiesResponse> ListPullRequestActivitiesResponseEnumerator(ListPullRequestActivitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestActivitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestActivitiesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestAttachmentsRecordEnumerator(ListPullRequestAttachmentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PullRequestAttachmentSummary objects contained in responses from the ListPullRequestAttachments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PullRequestAttachmentSummary> ListPullRequestAttachmentsRecordEnumerator(ListPullRequestAttachmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestAttachmentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PullRequestAttachmentSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestAttachmentsResponseEnumerator(ListPullRequestAttachmentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequestAttachments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestAttachmentsResponse> ListPullRequestAttachmentsResponseEnumerator(ListPullRequestAttachmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestAttachmentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestAttachmentsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestAuthorsRecordEnumerator(ListPullRequestAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PullRequestAuthorSummary objects contained in responses from the ListPullRequestAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PullRequestAuthorSummary> ListPullRequestAuthorsRecordEnumerator(ListPullRequestAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PullRequestAuthorSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestAuthorsResponseEnumerator(ListPullRequestAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequestAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestAuthorsResponse> ListPullRequestAuthorsResponseEnumerator(ListPullRequestAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestAuthorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestCommentsRecordEnumerator(ListPullRequestCommentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PullRequestCommentSummary objects contained in responses from the ListPullRequestComments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PullRequestCommentSummary> ListPullRequestCommentsRecordEnumerator(ListPullRequestCommentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestCommentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PullRequestCommentSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestCommentsResponseEnumerator(ListPullRequestCommentsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequestComments operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestCommentsResponse> ListPullRequestCommentsResponseEnumerator(ListPullRequestCommentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestCommentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestCommentsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestCommitsRecordEnumerator(ListPullRequestCommitsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositoryCommitSummary objects contained in responses from the ListPullRequestCommits operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositoryCommitSummary> ListPullRequestCommitsRecordEnumerator(ListPullRequestCommitsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestCommitsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositoryCommitSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestCommitsResponseEnumerator(ListPullRequestCommitsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequestCommits operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestCommitsResponse> ListPullRequestCommitsResponseEnumerator(ListPullRequestCommitsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestCommitsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestCommitsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestFileChangesRecordEnumerator(ListPullRequestFileChangesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PullRequestFileChangeSummary objects contained in responses from the ListPullRequestFileChanges operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PullRequestFileChangeSummary> ListPullRequestFileChangesRecordEnumerator(ListPullRequestFileChangesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestFileChangesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PullRequestFileChangeSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestFileChangesResponseEnumerator(ListPullRequestFileChangesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequestFileChanges operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestFileChangesResponse> ListPullRequestFileChangesResponseEnumerator(ListPullRequestFileChangesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestFileChangesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestFileChangesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestsRecordEnumerator(ListPullRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PullRequestSummary objects contained in responses from the ListPullRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PullRequestSummary> ListPullRequestsRecordEnumerator(ListPullRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PullRequestSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPullRequestsResponseEnumerator(ListPullRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPullRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPullRequestsResponse> ListPullRequestsResponseEnumerator(ListPullRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPullRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPullRequestsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRefsRecordEnumerator(ListRefsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositoryRefSummary objects contained in responses from the ListRefs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositoryRefSummary> ListRefsRecordEnumerator(ListRefsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRefsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositoryRefSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRefsResponseEnumerator(ListRefsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListRefs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListRefsResponse> ListRefsResponseEnumerator(ListRefsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRefsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRefsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRepositoriesRecordEnumerator(ListRepositoriesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RepositorySummary objects contained in responses from the ListRepositories operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RepositorySummary> ListRepositoriesRecordEnumerator(ListRepositoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRepositoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RepositorySummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRepositoriesResponseEnumerator(ListRepositoriesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListRepositories operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListRepositoriesResponse> ListRepositoriesResponseEnumerator(ListRepositoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRepositoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRepositoriesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRepositoryCommitAnalyticsAuthorsRecordEnumerator(ListRepositoryCommitAnalyticsAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the CommitAnalyticsAuthorSummary objects contained in responses from the ListRepositoryCommitAnalyticsAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<CommitAnalyticsAuthorSummary> ListRepositoryCommitAnalyticsAuthorsRecordEnumerator(ListRepositoryCommitAnalyticsAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRepositoryCommitAnalyticsAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<CommitAnalyticsAuthorSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRepositoryCommitAnalyticsAuthorsResponseEnumerator(ListRepositoryCommitAnalyticsAuthorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListRepositoryCommitAnalyticsAuthors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListRepositoryCommitAnalyticsAuthorsResponse> ListRepositoryCommitAnalyticsAuthorsResponseEnumerator(ListRepositoryCommitAnalyticsAuthorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRepositoryCommitAnalyticsAuthorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRepositoryCommitAnalyticsAuthorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListTriggersRecordEnumerator(ListTriggersRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the TriggerSummary objects contained in responses from the ListTriggers operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<TriggerSummary> ListTriggersRecordEnumerator(ListTriggersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTriggersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TriggerSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListTriggersResponseEnumerator(ListTriggersRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListTriggers operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListTriggersResponse> ListTriggersResponseEnumerator(ListTriggersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTriggersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTriggersResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestErrorsRecordEnumerator(ListWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestError objects contained in responses from the ListWorkRequestErrors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestError> ListWorkRequestErrorsRecordEnumerator(ListWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestError>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestErrorsResponseEnumerator(ListWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWorkRequestErrors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWorkRequestErrorsResponse> ListWorkRequestErrorsResponseEnumerator(ListWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWorkRequestErrorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestLogsRecordEnumerator(ListWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestLogEntry objects contained in responses from the ListWorkRequestLogs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestLogEntry> ListWorkRequestLogsRecordEnumerator(ListWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestLogEntry>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestLogsResponseEnumerator(ListWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWorkRequestLogs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWorkRequestLogsResponse> ListWorkRequestLogsResponseEnumerator(ListWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWorkRequestLogsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestsRecordEnumerator(ListWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestSummary objects contained in responses from the ListWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestSummary> ListWorkRequestsRecordEnumerator(ListWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestsResponseEnumerator(ListWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWorkRequestsResponse> ListWorkRequestsResponseEnumerator(ListWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWorkRequestsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

In this article
Back to top