3 implementations of GetResult
Microsoft.JSInterop (3)
Infrastructure\TaskGenericsUtil.cs (3)
76
public object?
GetResult
(Task task) => ((Task<T>)task).Result!;
81
public object?
GetResult
(Task task) => resultProperty.GetValue(task);
86
public object?
GetResult
(Task task)
1 reference to GetResult
Microsoft.JSInterop (1)
Infrastructure\TaskGenericsUtil.cs (1)
43
return getter.
GetResult
(task);