3 references to GetIAsyncEnumerableInterface
Microsoft.AspNetCore.SignalR.Core (3)
Internal\HubMethodDescriptor.cs (1)
41
var asyncEnumerableType = ReflectionHelper.
GetIAsyncEnumerableInterface
(NonAsyncReturnType);
src\SignalR\common\Shared\AsyncEnumerableAdapters.cs (1)
158
var constructedIAsyncEnumerableInterface = ReflectionHelper.
GetIAsyncEnumerableInterface
(asyncEnumerable.GetType())!;
src\SignalR\common\Shared\ReflectionHelper.cs (1)
48
public static bool IsIAsyncEnumerable(Type type) =>
GetIAsyncEnumerableInterface
(type) is not null;