Throw.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Threading.Tasks;
  8. namespace System.Linq
  9. {
  10. public static partial class EnumerableEx
  11. {
  12. /// <summary>
  13. /// Returns a sequence that throws an exception upon enumeration.
  14. /// </summary>
  15. /// <typeparam name="TResult">Result sequence element type.</typeparam>
  16. /// <param name="exception">Exception to throw upon enumerating the resulting sequence.</param>
  17. /// <returns>Sequence that throws the specified exception upon enumeration.</returns>
  18. public static IEnumerable<TResult> Throw<TResult>(Exception exception)
  19. {
  20. if (exception == null)
  21. throw new ArgumentNullException(nameof(exception));
  22. return Throw_<TResult>(exception);
  23. }
  24. private static IEnumerable<TResult> Throw_<TResult>(Exception exception)
  25. {
  26. throw exception;
  27. #pragma warning disable 0162
  28. yield break;
  29. #pragma warning restore 0162
  30. }
  31. }
  32. }