You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>A compositional asynchronous computation, which, when run, will eventually produce a value
15
-
/// of type T, or else raises an exception.</summary>
14
+
/// <summary>
15
+
/// An asynchronous computation, which, when run, will eventually produce a value of type T, or else raises an exception.
16
+
/// </summary>
16
17
///
17
-
/// <remarks>Asynchronous computations are normally specified using an F# computation expression.
18
+
/// <remarks>
19
+
/// This type has no members. Asynchronous computations are normally specified either by using an async expression
20
+
/// or the static methods in the <see cref="T:Microsoft.FSharp.Control.Async"/> type.
18
21
///
19
-
/// When run, asynchronous computations have two modes: as a work item (executing synchronous
20
-
/// code), or as a wait item (waiting for an event or I/O completion).
21
-
///
22
-
/// When run, asynchronous computations can be governed by CancellationToken. This can usually
23
-
/// be specified when the async computation is started. The associated CancellationTokenSource
24
-
/// may be used to cancel the asynchronous computation. Asynchronous computations built using
25
-
/// computation expressions can check the cancellation condition regularly. Synchronous
26
-
/// computations within an asynchronous computation do not automatically check this condition.</remarks>
22
+
/// See also <a href="https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/asynchronous-workflows">F# Language Guide - Async Workflows</a>.
/// <summary>This static class holds members for creating and manipulating asynchronous computations.</summary>
28
+
/// <summary>Holds static members for creating and manipulating asynchronous computations.</summary>
29
+
///
30
+
/// <remarks>
31
+
/// See also <a href="https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/asynchronous-workflows">F# Language Guide - Async Workflows</a>.
0 commit comments