3 writes to Type
Aspire.Hosting (3)
Ats\AtsCapabilityScanner.cs (3)
1490Type = paramTypeRef 1560Type = paramTypeRef 1581Type = paramTypeRef
21 references to Type
Aspire.Hosting (1)
Ats\AtsCapabilityScanner.cs (1)
606result = FindUnknownType(cbParam.Type);
Aspire.Hosting.CodeGeneration.Go (2)
AtsGoCodeGenerator.cs (2)
556AddHandleTypeIfNeeded(handleTypeIds, callbackParam.Type); 637AddListOrDictTypeIfNeeded(typeIds, callbackParam.Type);
Aspire.Hosting.CodeGeneration.Java (2)
AtsJavaCodeGenerator.cs (2)
523AddHandleTypeIfNeeded(handleTypeIds, callbackParam.Type); 604AddListOrDictTypeIfNeeded(typeIds, callbackParam.Type);
Aspire.Hosting.CodeGeneration.Python (3)
AtsPythonCodeGenerator.cs (3)
431AddHandleTypeIfNeeded(handleTypeIds, callbackParam.Type); 512AddListOrDictTypeIfNeeded(typeIds, callbackParam.Type); 644var paramTypes = string.Join(", ", parameters.Select(p => MapTypeRefToPython(p.Type)));
Aspire.Hosting.CodeGeneration.Rust (2)
AtsRustCodeGenerator.cs (2)
590AddHandleTypeIfNeeded(handleTypeIds, callbackParam.Type); 670AddListOrDictTypeIfNeeded(typeIds, callbackParam.Type);
Aspire.Hosting.CodeGeneration.TypeScript (9)
AtsTypeScriptCodeGenerator.cs (9)
392if (IsHandleType(cbParam.Type) && !dtoTypeIds.Contains(cbParam.Type.TypeId)) 394typeIds.Add(cbParam.Type.TypeId); 1154var tsType = MapTypeRefToTypeScript(param.Type); 1263var tsType = MapTypeRefToTypeScript(cbParam.Type); 1264var cbTypeId = cbParam.Type.TypeId; 1293var tsType = MapTypeRefToTypeScript(cbParam.Type); 1294var cbTypeId = cbParam.Type.TypeId; 2484CollectFromTypeRef(cbParam.Type);
Aspire.Hosting.CodeGeneration.TypeScript.Tests (1)
AtsTypeScriptCodeGeneratorTests.cs (1)
1051Assert.Equal(AtsConstants.CancellationToken, operationParam.CallbackParameters[0].Type?.TypeId);
Aspire.Hosting.RemoteHost (1)
CodeGeneration\CodeGenerationService.cs (1)
89Type = MapTypeRef(cp.Type)