1 write to MethodInfo
Microsoft.AspNetCore.SignalR.Core (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
34
MethodInfo
= methodInfo;
10 references to MethodInfo
Microsoft.AspNetCore.SignalR.Core (10)
HubInvocationContext.cs (1)
34
: this(context, serviceProvider, hub, objectMethodExecutor.
MethodInfo
, hubMethodArguments)
Internal\DefaultHubDispatcher.cs (6)
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<>.";
574
Log.FailedStreaming(_logger, invocationId, descriptor.MethodExecutor.
MethodInfo
.Name, exception);
584
Log.FailedStreaming(_logger, invocationId, descriptor.MethodExecutor.
MethodInfo
.Name, ex);
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 (3)
120
$"{methodExecutor.
MethodInfo
.DeclaringType?.Name}.{methodExecutor.
MethodInfo
.Name}: The {nameof(FromKeyedServicesAttribute)} is not supported on parameters that are also annotated with {nameof(IFromServiceMetadata)}.");
301
var methodInfo = MethodExecutor.
MethodInfo
;