2 types derived from HubMethodInvocationMessage
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\HubMethodInvocationMessage.cs (2)
62
public class InvocationMessage :
HubMethodInvocationMessage
127
public class StreamInvocationMessage :
HubMethodInvocationMessage
17 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 (15)
_generated\0\LoggerMessage.g.cs (6)
517
private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::Microsoft.AspNetCore.SignalR.Protocol.
HubMethodInvocationMessage
, global::System.Exception?> __StreamingMethodCalledWithInvokeCallback =
518
global::Microsoft.Extensions.Logging.LoggerMessage.Define<global::Microsoft.AspNetCore.SignalR.Protocol.
HubMethodInvocationMessage
>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(13, "StreamingMethodCalledWithInvoke"), "A streaming method was invoked with a non-streaming invocation : {InvocationMessage}.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true });
525
public static partial void StreamingMethodCalledWithInvoke(global::Microsoft.Extensions.Logging.ILogger logger, global::Microsoft.AspNetCore.SignalR.Protocol.
HubMethodInvocationMessage
invocationMessage)
533
private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::Microsoft.AspNetCore.SignalR.Protocol.
HubMethodInvocationMessage
, global::System.Exception?> __NonStreamingMethodCalledWithStreamCallback =
534
global::Microsoft.Extensions.Logging.LoggerMessage.Define<global::Microsoft.AspNetCore.SignalR.Protocol.
HubMethodInvocationMessage
>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(14, "NonStreamingMethodCalledWithStream"), "A non-streaming method was invoked with a streaming invocation : {InvocationMessage}.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true });
541
public static partial void NonStreamingMethodCalledWithStream(global::Microsoft.Extensions.Logging.ILogger logger, global::Microsoft.AspNetCore.SignalR.Protocol.
HubMethodInvocationMessage
invocationMessage)
Internal\DefaultHubDispatcher.cs (7)
283
HubMethodInvocationMessage
hubMethodInvocationMessage, bool isStreamResponse)
319
HubMethodInvocationMessage
hubMethodInvocationMessage, bool isStreamResponse, bool isStreamCall)
392
HubMethodInvocationMessage
hubMethodInvocationMessage,
492
private static ValueTask CleanupInvocation(HubConnectionContext connection,
HubMethodInvocationMessage
hubMessage, IHubActivator<THub>? hubActivator,
512
IHubActivator<THub> hubActivator, THub hub, CancellationTokenSource? streamCts,
HubMethodInvocationMessage
hubMethodInvocationMessage, HubMethodDescriptor descriptor)
691
HubMethodInvocationMessage
hubMethodInvocationMessage, HubConnectionContext connection)
718
private void ReplaceArguments(HubMethodDescriptor descriptor,
HubMethodInvocationMessage
hubMethodInvocationMessage, bool isStreamCall,
Internal\DefaultHubDispatcherLog.cs (2)
66
public static partial void StreamingMethodCalledWithInvoke(ILogger logger,
HubMethodInvocationMessage
invocationMessage);
69
public static partial void NonStreamingMethodCalledWithStream(ILogger logger,
HubMethodInvocationMessage
invocationMessage);