4 instantiations of 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.Core (2)
DefaultHubLifetimeManager.cs (2)
282return new InvocationMessage(methodName, args); 358var message = new InvocationMessage(invocationId, methodName, args);
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
811return new InvocationMessage(invocationId, target, arguments, streamIds);
13 references to InvocationMessage
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
391case InvocationMessage invocationMessage: 425private void WriteInvocationMessage(InvocationMessage message, ref MessagePackWriter writer)
Microsoft.AspNetCore.SignalR.Common (3)
Protocol\HubMethodInvocationMessage.cs (3)
65/// Initializes a new instance of the <see cref="InvocationMessage"/> class. 75/// Initializes a new instance of the <see cref="InvocationMessage"/> class. 86/// Initializes a new instance of the <see cref="InvocationMessage"/> class.
Microsoft.AspNetCore.SignalR.Core (6)
_generated\0\LoggerMessage.g.cs (3)
347private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage, global::System.Exception?> __ReceivedHubInvocationCallback = 348global::Microsoft.Extensions.Logging.LoggerMessage.Define<global::Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(1, "ReceivedHubInvocation"), "Received hub invocation: {InvocationMessage}.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true }); 355public static partial void ReceivedHubInvocation(global::Microsoft.Extensions.Logging.ILogger logger, global::Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage invocationMessage)
DefaultHubLifetimeManager.cs (1)
358var message = new InvocationMessage(invocationId, methodName, args);
Internal\DefaultHubDispatcher.cs (1)
175case InvocationMessage invocationMessage:
Internal\DefaultHubDispatcherLog.cs (1)
13public static partial void ReceivedHubInvocation(ILogger logger, InvocationMessage invocationMessage);
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
526case InvocationMessage m: 640private void WriteInvocationMessage(InvocationMessage message, Utf8JsonWriter writer)