5 writes to IsReadOnly
Aspire.Hosting.RemoteHost (5)
AtsCapabilityScanner.cs (5)
1108IsReadOnly = false 2101IsReadOnly = false 2124IsReadOnly = true 2165IsReadOnly = true 2224IsReadOnly = true
22 references to IsReadOnly
Aspire.Hosting.CodeGeneration.Go (4)
AtsGoCodeGenerator.cs (4)
669AtsTypeCategory.List => typeRef.IsReadOnly 672AtsTypeCategory.Dict => typeRef.IsReadOnly 755if (!typeRef.IsReadOnly) 762if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.Java (4)
AtsJavaCodeGenerator.cs (4)
637AtsTypeCategory.List => typeRef.IsReadOnly 640AtsTypeCategory.Dict => typeRef.IsReadOnly 711if (!typeRef.IsReadOnly) 718if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.Python (4)
AtsPythonCodeGenerator.cs (4)
588AtsTypeCategory.List => typeRef.IsReadOnly 591AtsTypeCategory.Dict => typeRef.IsReadOnly 674if (!typeRef.IsReadOnly) 681if (!typeRef.IsReadOnly)
Aspire.Hosting.CodeGeneration.Rust (8)
AtsRustCodeGenerator.cs (8)
464else if (returnTypeRef?.Category == AtsTypeCategory.Dict && returnTypeRef.IsReadOnly == false) 470else if (returnTypeRef?.Category == AtsTypeCategory.List && returnTypeRef.IsReadOnly == false) 744AtsTypeCategory.List => typeRef.IsReadOnly 747AtsTypeCategory.Dict => typeRef.IsReadOnly 857&& (typeRef.Category == AtsTypeCategory.Array || (typeRef.Category == AtsTypeCategory.List && typeRef.IsReadOnly)) 863&& ((typeRef.Category == AtsTypeCategory.List && !typeRef.IsReadOnly) 864|| (typeRef.Category == AtsTypeCategory.Dict && !typeRef.IsReadOnly)); 902if (!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,