5 writes to Type
Aspire.Hosting.CodeGeneration.Java.Tests (1)
AtsJavaCodeGeneratorTests.cs (1)
647Type = new AtsTypeRef { TypeId = "KeywordProbe", Category = AtsTypeCategory.Dto }
Aspire.Hosting.RemoteHost (1)
AtsCapabilityScanner.cs (1)
1284Type = typeRef!,
Aspire.Hosting.RemoteHost.Tests (3)
AtsContextFilterTests.cs (3)
576Type = new AtsTypeRef 589Type = new AtsTypeRef 602Type = new AtsTypeRef
11 references to Type
Aspire.Hosting.CodeGeneration.Go (2)
AtsGoCodeGenerator.cs (2)
631sb.AppendLine(MapTypeRefToGo(valueInfo.Type, isOptional: false)); 665sb.Append(RenderGoExportedValue(valueInfo.Value, valueInfo.Type, dtoTypesById));
Aspire.Hosting.CodeGeneration.Java (2)
AtsJavaCodeGenerator.cs (2)
834var javaType = MapTypeRefToJava(valueInfo.Type, isOptional: false, useBoxedTypes: true); 835var expression = RenderJavaExportedValue(valueInfo.Value, valueInfo.Type, dtoTypesById);
Aspire.Hosting.CodeGeneration.Python (1)
AtsPythonCodeGenerator.cs (1)
900sb.AppendLine(CultureInfo.InvariantCulture, $"{childPath} = {RenderPythonExportedValue(valueInfo.Value, valueInfo.Type, dtoTypesById, topLevel: true)}");
Aspire.Hosting.CodeGeneration.Rust (1)
AtsRustCodeGenerator.cs (1)
307var returnType = MapTypeRefToRustForExportedValue(valueInfo.Type);
Aspire.Hosting.CodeGeneration.TypeScript (3)
TypeScriptApiProjector.cs (3)
756var literal = RenderTypeScriptExportedValue(exportedValue.Value, exportedValue.Type); 757var exportedType = MapTypeRefToTypeScript(exportedValue.Type); 759return exportedValue.Type.Category is AtsTypeCategory.Primitive
Aspire.Hosting.RemoteHost (2)
AtsContextFilter.cs (1)
275CollectReferencedType(exportedValue.Type, handleTypesById, dtoTypesById, enumTypesById, includedHandleTypeIds, includedDtoTypeIds, includedEnumTypeIds);
CodeGeneration\CodeGenerationService.cs (1)
194Type = MapTypeRef(value.Type),