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)
366var methodExecutor = descriptor.MethodExecutor; 616result = await ExecuteHubMethod(descriptor.MethodExecutor, hub, arguments, hubCallerContext, scope.ServiceProvider); 629Log.InvalidReturnValueFromStreamingMethod(_logger, descriptor.MethodExecutor.MethodInfo.Name); 630error = $"The value returned by the streaming method '{descriptor.MethodExecutor.MethodInfo.Name}' is not a ChannelReader<> or IAsyncEnumerable<>."; 635Log.StreamingResult(_logger, invocationId, descriptor.MethodExecutor); 651Log.FailedStreaming(_logger, invocationId, descriptor.MethodExecutor.MethodInfo.Name, exception); 661Log.FailedStreaming(_logger, invocationId, descriptor.MethodExecutor.MethodInfo.Name, ex); 706var methodExecutor = methodDescriptor.MethodExecutor; 771new HubInvocationContext(hubCallerContext, provider, hub, descriptor.MethodExecutor.MethodInfo, hubMethodArguments)); 857Debug.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;