1 write to MethodReturnType
Microsoft.AspNetCore.SignalR.Core (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
38MethodReturnType = methodInfo.ReturnType;
5 references to MethodReturnType
Microsoft.AspNetCore.SignalR.Core (5)
Internal\DefaultHubDispatcher.cs (1)
600if (methodExecutor.MethodReturnType == typeof(Task))
Internal\DefaultHubDispatcherLog.cs (2)
30var resultType = objectMethodExecutor.AsyncResultType ?? objectMethodExecutor.MethodReturnType; 42var resultType = objectMethodExecutor.AsyncResultType ?? objectMethodExecutor.MethodReturnType;
Internal\HubMethodDescriptor.cs (1)
36: MethodExecutor.MethodReturnType;
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
40var isAwaitable = CoercedAwaitableInfo.IsTypeAwaitable(MethodReturnType, out var coercedAwaitableInfo);