20 writes to IsProxied
Aspire.Hosting (1)
ApplicationModel\EndpointAnnotation.cs (1)
53IsProxied = isProxied;
Aspire.Hosting.Tests (15)
DistributedApplicationTests.cs (7)
653endpoint.IsProxied = false; 672endpoint.IsProxied = false; 694e.IsProxied = false; 729e.IsProxied = false; 793endpoint.IsProxied = false; 799endpoint.IsProxied = false; 846endpoint.IsProxied = false;
ProjectResourceTests.cs (2)
606e.IsProxied = isProxied; 612e.IsProxied = isProxied;
WithEndpointTests.cs (6)
43endpoint.IsProxied = false; 53endpoint.IsProxied = true; 57endpoint.IsProxied = false; 78endpoint.IsProxied = false; 88endpoint.IsProxied = true; 92endpoint.IsProxied = false;
ProxylessEndToEnd.AppHost (2)
Program.cs (2)
8endpoint.IsProxied = false; 14e.IsProxied = false;
TestingAppHost1.AppHost (2)
Program.cs (2)
10.WithEndpoint("http", ea => ea.IsProxied = false) 11.WithEndpoint("https", ea => ea.IsProxied = false)
11 references to IsProxied
Aspire.Hosting (6)
ApplicationModel\EndpointAnnotation.cs (2)
78get => _port ?? (IsProxied || _portSetToNull ? null : _targetPort); 95get => _targetPort ?? (IsProxied || _targetPortSetToNull ? null : _port);
Dcp\ApplicationExecutor.cs (4)
782if (ep.EndpointAnnotation.IsProxied) 980if (!svc.HasCompleteAddress && sp.EndpointAnnotation.IsProxied) 986if (!sp.EndpointAnnotation.IsProxied && svc.AllocatedPort is null) 1610if (!ea.IsProxied && ea.Port is int)
Aspire.Hosting.Azure.Tests (5)
AzureFunctionsTests.cs (5)
39Assert.False(endpointAnnotation.IsProxied); 54Assert.True(endpointAnnotation.IsProxied); 68Assert.False(endpointAnnotation.IsProxied); 82Assert.True(endpointAnnotation.IsProxied); 96Assert.True(endpointAnnotation.IsProxied);