6 implementations of IInvocationBinder
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2296private sealed class ConnectionState : 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
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
364private class DefaultInvocationBinder : IInvocationBinder
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (1)
712private class FakeInvocationBinder : IInvocationBinder
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (1)
14internal sealed class ClientResultsManager : IInvocationBinder
30 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.Client.Core (3)
HubConnection.cs (3)
2583Type IInvocationBinder.GetReturnType(string invocationId) 2593Type IInvocationBinder.GetStreamItemType(string invocationId) 2605IReadOnlyList<Type> IInvocationBinder.GetParameterTypes(string methodName)
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)
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (9)
Protocol\MessagePackHubProtocol.cs (1)
60public bool TryParseMessage(ref ReadOnlySequence<byte> input, IInvocationBinder binder, [NotNullWhen(true)] out HubMessage? message)
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.Protocols.NewtonsoftJson (3)
Protocol\NewtonsoftJsonHubProtocol.cs (2)
79public bool TryParseMessage(ref ReadOnlySequence<byte> input, IInvocationBinder binder, [NotNullWhen(true)] out HubMessage? message) 114private HubMessage? ParseMessage(Utf8BufferTextReader textReader, IInvocationBinder binder)
src\aspnetcore\src\SignalR\common\Shared\TryGetReturnType.cs (1)
10internal static Type? TryGetReturnType(IInvocationBinder binder, string invocationId)
Microsoft.AspNetCore.SignalR.Specification.Tests (2)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (2)
30private readonly IInvocationBinder _invocationBinder; 41public TestClient(IHubProtocol protocol = null, IInvocationBinder invocationBinder = null, string userIdentifier = null, long pauseWriterThreshold = 32768)