/// <summary> /// Creates a new enumerable which will iterate over the responses received from the GetZoneRecords operation. This enumerable /// will fetch more data from the server as needed. /// </summary> /// <param name="request">The request object containing the details to send</param> /// <param name="retryConfiguration">The configuration for retrying, may be null</param> /// <param name="cancellationToken">The cancellation token object</param> /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns> public IEnumerable <GetZoneRecordsResponse> GetZoneRecordsResponseEnumerator(GetZoneRecordsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { return(new Common.Utils.ResponseEnumerable <GetZoneRecordsRequest, GetZoneRecordsResponse>( response => response.OpcNextPage, input => { if (!string.IsNullOrEmpty(input)) { request.Page = input; } return request; }, request => client.GetZoneRecords(request, retryConfiguration, cancellationToken) )); }