3 references to GetIAsyncEnumerableInterface
Microsoft.AspNetCore.SignalR.Client.Core (3)
HubConnection.cs (1)
843if (ReflectionHelper.GetIAsyncEnumerableInterface(reader.GetType()) is { } asyncEnumerableType)
src\SignalR\common\Shared\AsyncEnumerableAdapters.cs (1)
158var constructedIAsyncEnumerableInterface = ReflectionHelper.GetIAsyncEnumerableInterface(asyncEnumerable.GetType())!;
src\SignalR\common\Shared\ReflectionHelper.cs (1)
48public static bool IsIAsyncEnumerable(Type type) => GetIAsyncEnumerableInterface(type) is not null;