/// <summary> /// Creates a new enumerable which will iterate over the responses received from the GetDomainRecords 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 <GetDomainRecordsResponse> GetDomainRecordsResponseEnumerator(GetDomainRecordsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { return(new Common.Utils.ResponseEnumerable <GetDomainRecordsRequest, GetDomainRecordsResponse>( response => response.OpcNextPage, input => { if (!string.IsNullOrEmpty(input)) { request.Page = input; } return request; }, request => client.GetDomainRecords(request, retryConfiguration, cancellationToken) )); }