6 references to ReflectionHelper
Microsoft.AspNetCore.SignalR.Core (6)
Internal\DefaultHubDispatcher.cs (1)
748else if (isStreamCall && ReflectionHelper.IsStreamingType(descriptor.OriginalParameterTypes[parameterPointer], mustBeDirectType: true))
Internal\HubMethodDescriptor.cs (2)
41var asyncEnumerableType = ReflectionHelper.GetIAsyncEnumerableInterface(NonAsyncReturnType); 69else if (ReflectionHelper.IsStreamingType(p.ParameterType, mustBeDirectType: true))
src\SignalR\common\Shared\AsyncEnumerableAdapters.cs (2)
158var constructedIAsyncEnumerableInterface = ReflectionHelper.GetIAsyncEnumerableInterface(asyncEnumerable.GetType())!; 187var type = ReflectionHelper.GetIAsyncEnumeratorInterface(enumerator.GetType());
StreamTracker.cs (1)
122if (ReflectionHelper.IsIAsyncEnumerable(type))