1 write to MethodReturnType
Microsoft.AspNetCore.SignalR.Core (1)
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (1)
37MethodReturnType = methodInfo.ReturnType;
6 references to MethodReturnType
Microsoft.AspNetCore.SignalR.Core (6)
Internal\DefaultHubDispatcher.cs (1)
632if (methodExecutor.MethodReturnType == typeof(Task))
Internal\DefaultHubDispatcherLog.cs (2)
30var resultType = objectMethodExecutor.AsyncResultType ?? objectMethodExecutor.MethodReturnType; 42var resultType = objectMethodExecutor.AsyncResultType ?? objectMethodExecutor.MethodReturnType;
Internal\HubMethodDescriptor.cs (1)
39: MethodExecutor.MethodReturnType;
src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (2)
45var isAwaitable = CoercedAwaitableInfo.IsTypeAwaitable(MethodReturnType, out var coercedAwaitableInfo); 68var isAwaitable = IsTaskType(MethodReturnType, out var resultType);