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