| File: Internal\HubDispatcher.cs | Web Access |
| Project: src\aspnetcore\src\SignalR\server\Core\src\Microsoft.AspNetCore.SignalR.Core.csproj (Microsoft.AspNetCore.SignalR.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics.CodeAnalysis; using Microsoft.AspNetCore.SignalR.Protocol; namespace Microsoft.AspNetCore.SignalR.Internal; internal abstract class HubDispatcher<[DynamicallyAccessedMembers(Hub.DynamicallyAccessedMembers)] THub> where THub : Hub { public abstract Task OnConnectedAsync(HubConnectionContext connection); public abstract Task OnDisconnectedAsync(HubConnectionContext connection, Exception? exception); public abstract Task OnAuthenticationRefreshedAsync(HubConnectionContext connection); public abstract Task DispatchMessageAsync(HubConnectionContext connection, HubMessage hubMessage); public abstract IReadOnlyList<Type> GetParameterTypes(string name); public abstract string? GetTargetName(ReadOnlySpan<byte> targetUtf8Bytes); }