2 types derived from CollectionSpec
Microsoft.Extensions.Configuration.Binder.SourceGeneration (2)
Specs\Types\CollectionSpec.cs (2)
17internal abstract record CollectionWithCtorInitSpec : CollectionSpec 30internal sealed record ArraySpec : CollectionSpec
8 references to CollectionSpec
Microsoft.Extensions.Configuration.Binder.SourceGeneration (8)
Emitter\CoreBindingHelpers.cs (4)
1113_writer.WriteLine($"{memberAccessExpr} = global::System.{Identifier.Array}.Empty<{((CollectionSpec)complexType).ElementTypeRef.FullyQualifiedName}>();"); 1249&& type is CollectionSpec and not DictionarySpec 1410CollectionSpec? collectionType = type as CollectionSpec;
Specs\BindingHelperInfo.cs (1)
149case CollectionSpec collectionSpec:
Specs\TypeIndex.cs (3)
27CollectionSpec collectionSpec => CanBindTo(collectionSpec.ElementTypeRef), 42CollectionSpec collectionSpec => CanConstructElementsOf(collectionSpec), 52private bool CanConstructElementsOf(CollectionSpec typeSpec)