System.Interactive.Async.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>System.Interactive.Async</name>
    </assembly>
    <members>
        <member name="M:System.Collections.Generic.AsyncEnumerator.MoveNext``1(System.Collections.Generic.IAsyncEnumerator{``0})">
            <summary>
            Advances the enumerator to the next element in the sequence, returning the result asynchronously.
            </summary>
            <returns>
            Task containing the result of the operation: true if the enumerator was successfully advanced
            to the next element; false if the enumerator has passed the end of the sequence.
            </returns>
        </member>
        <member name="T:System.Collections.Generic.IAsyncEnumerable`1">
            <summary>
            Asynchronous version of the IEnumerable&lt;T&gt; interface, allowing elements of the
            enumerable sequence to be retrieved asynchronously.
            </summary>
            <typeparam name="T">Element type.</typeparam>
        </member>
        <member name="M:System.Collections.Generic.IAsyncEnumerable`1.GetEnumerator">
            <summary>
            Gets an asynchronous enumerator over the sequence.
            </summary>
            <returns>Enumerator for asynchronous enumeration over the sequence.</returns>
        </member>
        <member name="T:System.Collections.Generic.IAsyncEnumerator`1">
            <summary>
            Asynchronous version of the IEnumerator&lt;T&gt; interface, allowing elements to be
            retrieved asynchronously.
            </summary>
            <typeparam name="T">Element type.</typeparam>
        </member>
        <member name="M:System.Collections.Generic.IAsyncEnumerator`1.MoveNext(System.Threading.CancellationToken)">
            <summary>
            Advances the enumerator to the next element in the sequence, returning the result asynchronously.
            </summary>
            <param name="cancellationToken">Cancellation token that can be used to cancel the operation.</param>
            <returns>
            Task containing the result of the operation: true if the enumerator was successfully advanced
            to the next element; false if the enumerator has passed the end of the sequence.
            </returns>
        </member>
        <member name="P:System.Collections.Generic.IAsyncEnumerator`1.Current">
            <summary>
            Gets the current element in the iteration.
            </summary>
        </member>
    </members>
</doc>