Defer.cs 1007 B

12345678910111213141516171819202122232425262728
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Collections.Generic;
  5. using System.Threading.Tasks;
  6. namespace System.Linq
  7. {
  8. public static partial class AsyncEnumerable
  9. {
  10. public static IAsyncEnumerable<TSource> Defer<TSource>(Func<IAsyncEnumerable<TSource>> factory)
  11. {
  12. if (factory == null)
  13. throw new ArgumentNullException(nameof(factory));
  14. return CreateEnumerable(() => factory().GetAsyncEnumerator());
  15. }
  16. public static IAsyncEnumerable<TSource> Defer<TSource>(Func<Task<IAsyncEnumerable<TSource>>> factory)
  17. {
  18. if (factory == null)
  19. throw new ArgumentNullException(nameof(factory));
  20. return CreateEnumerable(async () => (await factory().ConfigureAwait(false)).GetAsyncEnumerator());
  21. }
  22. }
  23. }