2 types derived from CollectionSpec
Microsoft.Extensions.Configuration.Binder.SourceGeneration (2)
Specs\Types\CollectionSpec.cs (2)
17
internal abstract record CollectionWithCtorInitSpec :
CollectionSpec
30
internal 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
1410
CollectionSpec
? collectionType = type as
CollectionSpec
;
Specs\BindingHelperInfo.cs (1)
149
case
CollectionSpec
collectionSpec:
Specs\TypeIndex.cs (3)
27
CollectionSpec
collectionSpec => CanBindTo(collectionSpec.ElementTypeRef),
42
CollectionSpec
collectionSpec => CanConstructElementsOf(collectionSpec),
52
private bool CanConstructElementsOf(
CollectionSpec
typeSpec)