1 write to IsExactIEnumerableOfT
Microsoft.Extensions.Configuration.Binder.SourceGeneration (1)
Specs\Types\TypeSpec.cs (1)
24IsExactIEnumerableOfT = namedTypeSymbol.OriginalDefinition.SpecialType == SpecialType.System_Collections_Generic_IEnumerable_T;
2 references to IsExactIEnumerableOfT
Microsoft.Extensions.Configuration.Binder.SourceGeneration (2)
Emitter\CoreBindingHelpers.cs (2)
420EmitThrowBlock(condition: typeSpec is ArraySpec || typeSpec.IsExactIEnumerableOfT ? $"if ({member.Name} is null)" : "else"); 982if ((complexType is ArraySpec || complexType.IsExactIEnumerableOfT) && canSet)