7 references to InvocationMessage
Microsoft.AspNetCore.Components.Server (1)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (1)
106return ApplyHeaders(headers, new InvocationMessage(invocationId, target, arguments, streams));
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
1140var invocationMessage = new InvocationMessage(irq.InvocationId, methodName, args, streams); 1243var invocationMessage = new InvocationMessage(null, methodName, args, streamIds?.ToArray());
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
811return new InvocationMessage(invocationId, target, arguments, streamIds);
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocolWorker.cs (1)
106return ApplyHeaders(headers, new InvocationMessage(invocationId, target, arguments, streams));
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
802return new InvocationMessage(invocationId, target, arguments, streamIds);
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
228var message = new InvocationMessage(invocationId, methodName, args, streamIds);