1 write to MethodExecutor
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubMethodDescriptor.cs (1)
35MethodExecutor = methodExecutor;
14 references to MethodExecutor
Microsoft.AspNetCore.SignalR.Core (14)
Internal\DefaultHubDispatcher.cs (10)
321var methodExecutor = descriptor.MethodExecutor; 539result = await ExecuteHubMethod(descriptor.MethodExecutor, hub, arguments, connection, scope.ServiceProvider); 552Log.InvalidReturnValueFromStreamingMethod(_logger, descriptor.MethodExecutor.MethodInfo.Name); 553error = $"The value returned by the streaming method '{descriptor.MethodExecutor.MethodInfo.Name}' is not a ChannelReader<> or IAsyncEnumerable<>."; 558Log.StreamingResult(_logger, invocationId, descriptor.MethodExecutor); 574Log.FailedStreaming(_logger, invocationId, descriptor.MethodExecutor.MethodInfo.Name, exception); 584Log.FailedStreaming(_logger, invocationId, descriptor.MethodExecutor.MethodInfo.Name, ex); 624var methodExecutor = methodDescriptor.MethodExecutor; 673return IsHubMethodAuthorizedSlow(provider, hubConnectionContext.User, descriptor.Policies, new HubInvocationContext(hubConnectionContext.HubCallerContext, provider, hub, descriptor.MethodExecutor.MethodInfo, hubMethodArguments)); 760Debug.Assert(false, $"Failed to bind argument of type '{descriptor.OriginalParameterTypes[parameterPointer].Name}' for hub method '{descriptor.MethodExecutor.MethodInfo.Name}'.");
Internal\HubMethodDescriptor.cs (4)
37NonAsyncReturnType = (MethodExecutor.IsMethodAsync) 38? MethodExecutor.AsyncResultType! 39: MethodExecutor.MethodReturnType; 301var methodInfo = MethodExecutor.MethodInfo;