Changes per PR
This commit is contained in:
parent
92df79b270
commit
62d10bc08e
|
|
@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits
|
||||||
/// Invoked when a new circuit was established.
|
/// Invoked when a new circuit was established.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="circuit">The <see cref="Circuit"/>.</param>
|
/// <param name="circuit">The <see cref="Circuit"/>.</param>
|
||||||
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
|
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that notifies when the client connection is aborted.</param>
|
||||||
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
|
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
|
||||||
public virtual Task OnCircuitOpenedAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask;
|
public virtual Task OnCircuitOpenedAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask;
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="circuit">The <see cref="Circuit"/>.</param>
|
/// <param name="circuit">The <see cref="Circuit"/>.</param>
|
||||||
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
|
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that notifies when the client connection is aborted.</param>
|
||||||
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
|
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
|
||||||
public virtual Task OnConnectionUpAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask;
|
public virtual Task OnConnectionUpAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ using Microsoft.Extensions.Logging;
|
||||||
namespace Microsoft.AspNetCore.Components.Server
|
namespace Microsoft.AspNetCore.Components.Server
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A SignalR hub that accepts connections to a ASP.NET Core Components WebApp.
|
/// A SignalR hub that accepts connections to an ASP.NET Core Components application.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class ComponentsHub : Hub
|
public sealed class ComponentsHub : Hub
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue