1 write to MethodExecutor
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubMethodDescriptor.cs (1)
35
MethodExecutor
= methodExecutor;
14 references to MethodExecutor
Microsoft.AspNetCore.SignalR.Core (14)
Internal\DefaultHubDispatcher.cs (10)
366
var methodExecutor = descriptor.
MethodExecutor
;
616
result = await ExecuteHubMethod(descriptor.
MethodExecutor
, hub, arguments, hubCallerContext, scope.ServiceProvider);
629
Log.InvalidReturnValueFromStreamingMethod(_logger, descriptor.
MethodExecutor
.MethodInfo.Name);
630
error = $"The value returned by the streaming method '{descriptor.
MethodExecutor
.MethodInfo.Name}' is not a ChannelReader<> or IAsyncEnumerable<>.";
635
Log.StreamingResult(_logger, invocationId, descriptor.
MethodExecutor
);
651
Log.FailedStreaming(_logger, invocationId, descriptor.
MethodExecutor
.MethodInfo.Name, exception);
661
Log.FailedStreaming(_logger, invocationId, descriptor.
MethodExecutor
.MethodInfo.Name, ex);
706
var methodExecutor = methodDescriptor.
MethodExecutor
;
771
new HubInvocationContext(hubCallerContext, provider, hub, descriptor.
MethodExecutor
.MethodInfo, hubMethodArguments));
857
Debug.Assert(false, $"Failed to bind argument of type '{descriptor.OriginalParameterTypes[parameterPointer].Name}' for hub method '{descriptor.
MethodExecutor
.MethodInfo.Name}'.");
Internal\HubMethodDescriptor.cs (4)
37
NonAsyncReturnType = (
MethodExecutor
.IsMethodAsync)
38
?
MethodExecutor
.AsyncResultType!
39
:
MethodExecutor
.MethodReturnType;
301
var methodInfo =
MethodExecutor
.MethodInfo;