5 references to InvocationMessage
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\HubMethodInvocationMessage.cs (1)
70: this(null, target, arguments)
Microsoft.AspNetCore.SignalR.Core (1)
DefaultHubLifetimeManager.cs (1)
358var message = new InvocationMessage(invocationId, methodName, args);
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
207return SendHubMessageAsync(new InvocationMessage(invocationId, methodName, args) { Headers = headers });
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
Internal\RedisProtocol.cs (1)
72WriteHubMessage(ref writer, new InvocationMessage(invocationId, methodName, args));
RedisHubLifetimeManager.cs (1)
410var message = new InvocationMessage(invocationId, methodName, args);