System.Interactive.Async.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Interactive.Async</name>
  5. </assembly>
  6. <members>
  7. <member name="M:System.Collections.Generic.AsyncEnumerator.MoveNext``1(System.Collections.Generic.IAsyncEnumerator{``0})">
  8. <summary>
  9. Advances the enumerator to the next element in the sequence, returning the result asynchronously.
  10. </summary>
  11. <returns>
  12. Task containing the result of the operation: true if the enumerator was successfully advanced
  13. to the next element; false if the enumerator has passed the end of the sequence.
  14. </returns>
  15. </member>
  16. <member name="T:System.Collections.Generic.IAsyncEnumerable`1">
  17. <summary>
  18. Asynchronous version of the IEnumerable&lt;T&gt; interface, allowing elements of the
  19. enumerable sequence to be retrieved asynchronously.
  20. </summary>
  21. <typeparam name="T">Element type.</typeparam>
  22. </member>
  23. <member name="M:System.Collections.Generic.IAsyncEnumerable`1.GetEnumerator">
  24. <summary>
  25. Gets an asynchronous enumerator over the sequence.
  26. </summary>
  27. <returns>Enumerator for asynchronous enumeration over the sequence.</returns>
  28. </member>
  29. <member name="T:System.Collections.Generic.IAsyncEnumerator`1">
  30. <summary>
  31. Asynchronous version of the IEnumerator&lt;T&gt; interface, allowing elements to be
  32. retrieved asynchronously.
  33. </summary>
  34. <typeparam name="T">Element type.</typeparam>
  35. </member>
  36. <member name="M:System.Collections.Generic.IAsyncEnumerator`1.MoveNext(System.Threading.CancellationToken)">
  37. <summary>
  38. Advances the enumerator to the next element in the sequence, returning the result asynchronously.
  39. </summary>
  40. <param name="cancellationToken">Cancellation token that can be used to cancel the operation.</param>
  41. <returns>
  42. Task containing the result of the operation: true if the enumerator was successfully advanced
  43. to the next element; false if the enumerator has passed the end of the sequence.
  44. </returns>
  45. </member>
  46. <member name="P:System.Collections.Generic.IAsyncEnumerator`1.Current">
  47. <summary>
  48. Gets the current element in the iteration.
  49. </summary>
  50. </member>
  51. </members>
  52. </doc>