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