9 references to ClosedGenericMatcher
Microsoft.AspNetCore.Components.Endpoints (9)
FormMapping\Factories\CollectionConverterFactory.cs (2)
36var enumerable = ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IEnumerable<>)); 55var enumerableType = ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IEnumerable<>));
FormMapping\Factories\DictionaryConverterFactory.cs (6)
46var dictionaryType = ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IDictionary<,>)) ?? 47ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IReadOnlyDictionary<,>)); 61var parsableKeyType = ClosedGenericMatcher.ExtractGenericInterface(keyType, typeof(IParsable<>)); 77var dictionaryType = ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IDictionary<,>)) ?? 78ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IReadOnlyDictionary<,>)); 91var parsableKeyType = ClosedGenericMatcher.ExtractGenericInterface(keyType, typeof(IParsable<>));
FormMapping\Factories\ParsableConverterFactory.cs (1)
17return ClosedGenericMatcher.ExtractGenericInterface(type, typeof(IParsable<>)) is not null;