8 instantiations of InvocationBindingFailureMessage
Microsoft.AspNetCore.Components.Server (2)
src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
96return new InvocationBindingFailureMessage(invocationId, target, ExceptionDispatchInfo.Capture(ex)); 126return new InvocationBindingFailureMessage(invocationId, target, ExceptionDispatchInfo.Capture(ex));
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
374? new InvocationBindingFailureMessage(invocationId, target, argumentBindingException) 400? new InvocationBindingFailureMessage(invocationId, target, argumentBindingException)
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (2)
Protocol\MessagePackHubProtocolWorker.cs (2)
96return new InvocationBindingFailureMessage(invocationId, target, ExceptionDispatchInfo.Capture(ex)); 126return new InvocationBindingFailureMessage(invocationId, target, ExceptionDispatchInfo.Capture(ex));
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (2)
Protocol\NewtonsoftJsonHubProtocol.cs (2)
364? new InvocationBindingFailureMessage(invocationId, target, argumentBindingException) 390? new InvocationBindingFailureMessage(invocationId, target, argumentBindingException)
13 references to InvocationBindingFailureMessage
Microsoft.AspNetCore.Components.Server.Tests (2)
src\SignalR\common\SignalR.Common\test\Internal\Protocol\MessagePackHubProtocolTestBase.cs (2)
398var bindingFailure = Assert.IsType<InvocationBindingFailureMessage>(message);
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
1294case InvocationBindingFailureMessage bindingFailure:
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\InvocationBindingFailureMessage.cs (1)
27/// Initializes a new instance of the <see cref="InvocationBindingFailureMessage"/> class.
Protocol\StreamBindingFailureMessage.cs (1)
30/// Initializes a new instance of the <see cref="InvocationBindingFailureMessage"/> class.
Microsoft.AspNetCore.SignalR.Common.Tests (6)
Internal\Protocol\JsonHubProtocolTestsBase.cs (4)
257var bindingFailure = Assert.IsType<InvocationBindingFailureMessage>(message); 308var bindingFailure = Assert.IsType<InvocationBindingFailureMessage>(message);
Internal\Protocol\MessagePackHubProtocolTestBase.cs (2)
398var bindingFailure = Assert.IsType<InvocationBindingFailureMessage>(message);
Microsoft.AspNetCore.SignalR.Core (2)
Internal\DefaultHubDispatcher.cs (2)
169case InvocationBindingFailureMessage bindingFailureMessage: 245private Task ProcessInvocationBindingFailure(HubConnectionContext connection, InvocationBindingFailureMessage bindingFailureMessage)