public async ValueTask MoveNextAsync()

in Amazon.QLDB.Driver/result/generic/AsyncResult.cs [144:157]


            public async ValueTask<bool> MoveNextAsync()
            {
                if (this.currentEnumerator.MoveNext())
                {
                    return true;
                }
                else if (this.nextPageToken == null)
                {
                    return false;
                }

                await this.FetchPage();
                return await this.MoveNextAsync();
            }