5 writes to IsReadOnly
Aspire.Hosting (5)
Ats\AtsCapabilityScanner.cs (5)
1088IsReadOnly = false 2073IsReadOnly = false 2096IsReadOnly = true 2137IsReadOnly = true 2196IsReadOnly = true
22 references to IsReadOnly
Aspire.Hosting.CodeGeneration.Go (4)
AtsGoCodeGenerator.cs (4)
674AtsTypeCategory.List => typeRef.IsReadOnly 677AtsTypeCategory.Dict => typeRef.IsReadOnly 749if (!typeRef.IsReadOnly) 756if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.Java (4)
AtsJavaCodeGenerator.cs (4)
639AtsTypeCategory.List => typeRef.IsReadOnly 642AtsTypeCategory.Dict => typeRef.IsReadOnly 713if (!typeRef.IsReadOnly) 720if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.Python (4)
AtsPythonCodeGenerator.cs (4)
590AtsTypeCategory.List => typeRef.IsReadOnly 593AtsTypeCategory.Dict => typeRef.IsReadOnly 676if (!typeRef.IsReadOnly) 683if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.Rust (8)
AtsRustCodeGenerator.cs (8)
465else if (returnTypeRef?.Category == AtsTypeCategory.Dict && returnTypeRef.IsReadOnly == false) 471else if (returnTypeRef?.Category == AtsTypeCategory.List && returnTypeRef.IsReadOnly == false) 746AtsTypeCategory.List => typeRef.IsReadOnly 749AtsTypeCategory.Dict => typeRef.IsReadOnly 859&& (typeRef.Category == AtsTypeCategory.Array || (typeRef.Category == AtsTypeCategory.List && typeRef.IsReadOnly)) 865&& ((typeRef.Category == AtsTypeCategory.List && !typeRef.IsReadOnly) 866|| (typeRef.Category == AtsTypeCategory.Dict && !typeRef.IsReadOnly)); 904if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.TypeScript (1)
AtsTypeScriptCodeGenerator.cs (1)
163AtsTypeCategory.Dict => typeRef.IsReadOnly
Aspire.Hosting.RemoteHost (1)
CodeGeneration\CodeGenerationService.cs (1)
100IsReadOnly = t.IsReadOnly,