6 instantiations of MappedType
Aspire.Hosting.Azure.Provisioning.Generators (6)
AspireProvisioningProxyGenerator.cs (6)
2421mappedType = new MappedType("void", MappedTypeKind.Direct); 2438mappedType = new MappedType( 2448mappedType = new MappedType(type.ToDisplayString(s_typeDisplayFormat), MappedTypeKind.Direct); 2463mappedType = new MappedType( 2474mappedType = new MappedType(collectionProxyName + (isNullable ? "?" : string.Empty), MappedTypeKind.Collection, isNullable: isNullable); 2481mappedType = new MappedType(
23 references to MappedType
Aspire.Hosting.Azure.Provisioning.Generators (23)
AspireProvisioningProxyGenerator.cs (23)
784if (TryMapType(property.Type, proxyNames, collectionNames, out var mappedType)) 857MappedType mappedType, 927MappedType mappedType) 1072if (!TryMapType(method.ReturnType, proxyNames, collectionNames, out var returnType)) 1089if (!TryMapType(parameter.Type, proxyNames, collectionNames, out var parameterType)) 1207private static bool RequiresCapturedNullableReturnValue(MappedType mappedType) 1250TryMapType(collection.ElementType, proxyNames, collectionNames, out var mappedElementType); 1295MappedType mappedElementType) 1348MappedType mappedElementType) 1370MappedType mappedElementType) 1430MappedType mappedElementType) 1451MappedType mappedElementType) 1766if (!TryMapType(property.Type, proxyNames, collectionNames, out var mappedType)) 1855!TryMapType(parameter.Type, proxyNames, collectionNames, out var mappedType) || 2295private static void AppendUnionAttribute(StringBuilder source, MappedType mappedType, string indentation) 2417out MappedType mappedType) 2701private static void AppendMappedFromUnderlying(StringBuilder source, string expression, MappedType mappedType) 2732private static void AppendMappedToUnderlying(StringBuilder source, string expression, MappedType mappedType) 2824MappedType returnType, 2836public MappedType ReturnType { get; } 2858public MappedParameter(IParameterSymbol parameter, MappedType type) 2863public MappedParameter(IParameterSymbol parameter, MappedType type, string generatedName) 2872public MappedType Type { get; }