2 implementations of IInvocationBinder
Microsoft.AspNetCore.SignalR.Core (2)
Internal\HubConnectionBinder.cs (1)
8internal sealed class HubConnectionBinder<[DynamicallyAccessedMembers(Hub.DynamicallyAccessedMembers)] THub> : IInvocationBinder where THub : Hub
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (1)
14internal sealed class ClientResultsManager : IInvocationBinder
13 references to IInvocationBinder
Microsoft.AspNetCore.Components.Server (9)
BlazorPack\BlazorPackHubProtocol.cs (1)
39public bool TryParseMessage(ref ReadOnlySequence<byte> input, IInvocationBinder binder, out HubMessage message)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (7)
28public bool TryParseMessage(ref ReadOnlySequence<byte> input, IInvocationBinder binder, [NotNullWhen(true)] out HubMessage? message) 41private HubMessage? ParseMessage(ref MessagePackReader reader, IInvocationBinder binder) 73private HubMessage CreateInvocationMessage(ref MessagePackReader reader, IInvocationBinder binder, int itemCount) 109private HubMessage CreateStreamInvocationMessage(ref MessagePackReader reader, IInvocationBinder binder, int itemCount) 139private HubMessage CreateStreamItemMessage(ref MessagePackReader reader, IInvocationBinder binder) 159private CompletionMessage CreateCompletionMessage(ref MessagePackReader reader, IInvocationBinder binder) 651protected static string? ReadString(ref MessagePackReader reader, IInvocationBinder binder, string field)
src\aspnetcore\src\SignalR\common\Shared\TryGetReturnType.cs (1)
10internal static Type? TryGetReturnType(IInvocationBinder binder, string invocationId)
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\IHubProtocol.cs (1)
38bool TryParseMessage(ref ReadOnlySequence<byte> input, IInvocationBinder binder, [NotNullWhen(true)] out HubMessage? message);
Microsoft.AspNetCore.SignalR.Protocols.Json (3)
Protocol\JsonHubProtocol.cs (2)
89public bool TryParseMessage(ref ReadOnlySequence<byte> input, IInvocationBinder binder, [NotNullWhen(true)] out HubMessage? message) 115private HubMessage? ParseMessage(ReadOnlySequence<byte> input, IInvocationBinder binder)
src\aspnetcore\src\SignalR\common\Shared\TryGetReturnType.cs (1)
10internal static Type? TryGetReturnType(IInvocationBinder binder, string invocationId)