12 references to CollectionKind
Aspire.Hosting.Azure.Provisioning.Generators (12)
AspireProvisioningProxyGenerator.cs (12)
432if (TryGetCollection(type, out var collectionKind, out var elementType, out var collectionType)) 1266if (collection.Kind == CollectionKind.Dictionary) 1277if (collection.Kind == CollectionKind.List) 1307.Append(collection.Kind == CollectionKind.List ? "int index" : "string key") 1311var indexExpression = collection.Kind == CollectionKind.List ? "index" : "key"; 1353.Append(collection.Kind == CollectionKind.List ? "int index, " : "string key, "); 1358.Append(collection.Kind == CollectionKind.List ? "index" : "key") 2524out CollectionKind kind, 2533kind = CollectionKind.List; 2541kind = CollectionKind.Dictionary; 2806public CollectionShape(INamedTypeSymbol type, ITypeSymbol elementType, CollectionKind kind) 2817public CollectionKind Kind { get; }