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)
321
var methodExecutor = descriptor.
MethodExecutor
;
539
result = await ExecuteHubMethod(descriptor.
MethodExecutor
, hub, arguments, connection, scope.ServiceProvider);
552
Log.InvalidReturnValueFromStreamingMethod(_logger, descriptor.
MethodExecutor
.MethodInfo.Name);
553
error = $"The value returned by the streaming method '{descriptor.
MethodExecutor
.MethodInfo.Name}' is not a ChannelReader<> or IAsyncEnumerable<>.";
558
Log.StreamingResult(_logger, invocationId, descriptor.
MethodExecutor
);
574
Log.FailedStreaming(_logger, invocationId, descriptor.
MethodExecutor
.MethodInfo.Name, exception);
584
Log.FailedStreaming(_logger, invocationId, descriptor.
MethodExecutor
.MethodInfo.Name, ex);
624
var methodExecutor = methodDescriptor.
MethodExecutor
;
673
return IsHubMethodAuthorizedSlow(provider, hubConnectionContext.User, descriptor.Policies, new HubInvocationContext(hubConnectionContext.HubCallerContext, provider, hub, descriptor.
MethodExecutor
.MethodInfo, hubMethodArguments));
760
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;