File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/Components/Server/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public abstract class CircuitHandler
45
45
/// Invoked when a new circuit was established.
46
46
/// </summary>
47
47
/// <param name="circuit">The <see cref="Circuit"/>.</param>
48
- /// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
48
+ /// <param name="cancellationToken">A <see cref="CancellationToken"/> that notifies when the client connection is aborted .</param>
49
49
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
50
50
public virtual Task OnCircuitOpenedAsync ( Circuit circuit , CancellationToken cancellationToken ) => Task . CompletedTask ;
51
51
@@ -57,7 +57,7 @@ public abstract class CircuitHandler
57
57
/// </para>
58
58
/// </summary>
59
59
/// <param name="circuit">The <see cref="Circuit"/>.</param>
60
- /// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
60
+ /// <param name="cancellationToken">A <see cref="CancellationToken"/> that notifies when the client connection is aborted .</param>
61
61
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
62
62
public virtual Task OnConnectionUpAsync ( Circuit circuit , CancellationToken cancellationToken ) => Task . CompletedTask ;
63
63
Original file line number Diff line number Diff line change 13
13
namespace Microsoft . AspNetCore . Components . Server
14
14
{
15
15
/// <summary>
16
- /// A SignalR hub that accepts connections to a ASP.NET Core Components WebApp .
16
+ /// A SignalR hub that accepts connections to an ASP.NET Core Components application .
17
17
/// </summary>
18
18
public sealed class ComponentsHub : Hub
19
19
{
You can’t perform that action at this time.
0 commit comments