| 12345678910111213141516171819202122232425262728293031323334353637 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT License.// See the LICENSE file in the project root for more information. using System.Collections.Generic;using System.Threading;using System.Threading.Tasks;namespace System.Linq{    public static partial class AsyncEnumerableEx    {        /// <summary>        /// Ignores all elements in an async-enumerable sequence leaving only the termination messages.        /// </summary>        /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>        /// <param name="source">Source sequence.</param>        /// <returns>An empty async-enumerable sequence that signals termination, successful or exceptional, of the source sequence.</returns>        /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>        public static IAsyncEnumerable<TSource> IgnoreElements<TSource>(this IAsyncEnumerable<TSource> source)        {            if (source == null)                throw Error.ArgumentNull(nameof(source));            return Core(source);            static async IAsyncEnumerable<TSource> Core(IAsyncEnumerable<TSource> source, [System.Runtime.CompilerServices.EnumeratorCancellation] CancellationToken cancellationToken = default)            {                await foreach (var _ in source.WithCancellation(cancellationToken).ConfigureAwait(false))                {                }                yield break;            }        }    }}
 |