2 types derived from HubMethodInvocationMessage
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\HubMethodInvocationMessage.cs (2)
62public class InvocationMessage : HubMethodInvocationMessage 127public class StreamInvocationMessage : HubMethodInvocationMessage
11 references to HubMethodInvocationMessage
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\HubMethodInvocationMessage.cs (2)
31/// Initializes a new instance of the <see cref="HubMethodInvocationMessage"/> class. 44/// Initializes a new instance of the <see cref="HubMethodInvocationMessage"/> class.
Microsoft.AspNetCore.SignalR.Core (9)
Internal\DefaultHubDispatcher.cs (7)
283HubMethodInvocationMessage hubMethodInvocationMessage, bool isStreamResponse) 319HubMethodInvocationMessage hubMethodInvocationMessage, bool isStreamResponse, bool isStreamCall) 392HubMethodInvocationMessage hubMethodInvocationMessage, 492private static ValueTask CleanupInvocation(HubConnectionContext connection, HubMethodInvocationMessage hubMessage, IHubActivator<THub>? hubActivator, 512IHubActivator<THub> hubActivator, THub hub, CancellationTokenSource? streamCts, HubMethodInvocationMessage hubMethodInvocationMessage, HubMethodDescriptor descriptor) 691HubMethodInvocationMessage hubMethodInvocationMessage, HubConnectionContext connection) 718private void ReplaceArguments(HubMethodDescriptor descriptor, HubMethodInvocationMessage hubMethodInvocationMessage, bool isStreamCall,
Internal\DefaultHubDispatcherLog.cs (2)
66public static partial void StreamingMethodCalledWithInvoke(ILogger logger, HubMethodInvocationMessage invocationMessage); 69public static partial void NonStreamingMethodCalledWithStream(ILogger logger, HubMethodInvocationMessage invocationMessage);