15 references to Array
Aspire.Hosting (7)
Ats\AtsCapabilityScanner.cs (2)
2036Category = AtsTypeCategory.Array, 2095Category = AtsTypeCategory.Array,
Ats\AtsConstants.cs (3)
374return AtsTypeCategory.Array; 461return AtsTypeCategory.Array; 471return AtsTypeCategory.Array; // ReadOnly collections serialize as arrays
Ats\AtsContext.cs (2)
116return AtsTypeCategory.Array; 131return AtsTypeCategory.Array;
Aspire.Hosting.CodeGeneration.Go (1)
AtsGoCodeGenerator.cs (1)
667AtsTypeCategory.Array => $"[]{MapTypeRefToGo(typeRef.ElementType, false)}",
Aspire.Hosting.CodeGeneration.Java (1)
AtsJavaCodeGenerator.cs (1)
632AtsTypeCategory.Array => $"{MapTypeRefToJava(typeRef.ElementType, false)}[]",
Aspire.Hosting.CodeGeneration.Python (1)
AtsPythonCodeGenerator.cs (1)
586AtsTypeCategory.Array => $"list[{MapTypeRefToPython(typeRef.ElementType)}]",
Aspire.Hosting.CodeGeneration.Rust (2)
AtsRustCodeGenerator.cs (2)
698AtsTypeCategory.Array => $"Vec<{MapTypeRefToRust(typeRef.ElementType, false)}>", 737AtsTypeCategory.Array => $"Vec<{MapTypeRefToRustForDto(typeRef.ElementType, false)}>",
Aspire.Hosting.CodeGeneration.TypeScript (1)
AtsTypeScriptCodeGenerator.cs (1)
150AtsTypeCategory.Array => $"{MapTypeRefToTypeScript(typeRef.ElementType)}[]",
Aspire.Hosting.RemoteHost (2)
Ats\AtsMarshaller.cs (2)
139Hosting.Ats.AtsTypeCategory.Array => SerializeArray(value, typeRef.ElementType), 215Hosting.Ats.AtsTypeCategory.Array => SerializeArrayRuntime(value),