18 writes to IsProxied
Aspire.Hosting (1)
ApplicationModel\EndpointAnnotation.cs (1)
53IsProxied = isProxied;
Aspire.Hosting.Tests (15)
DistributedApplicationTests.cs (7)
841endpoint.IsProxied = false; 861endpoint.IsProxied = false; 884e.IsProxied = false; 920e.IsProxied = false; 985endpoint.IsProxied = false; 991endpoint.IsProxied = false; 1091endpoint.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;
13 references to IsProxied
Aspire.Hosting (5)
ApplicationModel\EndpointAnnotation.cs (2)
78get => _port ?? (IsProxied || _portSetToNull ? null : _targetPort); 95get => _targetPort ?? (IsProxied || _targetPortSetToNull ? null : _port);
Dcp\DcpExecutor.cs (2)
685if (!svc.HasCompleteAddress && sp.EndpointAnnotation.IsProxied) 691if (!sp.EndpointAnnotation.IsProxied && svc.AllocatedPort is null)
Dcp\ResourceSnapshotBuilder.cs (1)
247if (ep.EndpointAnnotation.IsProxied && activeEndpoint != null)
Aspire.Hosting.Azure.Tests (7)
AzureFunctionsTests.cs (7)
40Assert.False(endpointAnnotation.IsProxied); 68Assert.True(endpointAnnotation.IsProxied); 91Assert.False(endpointAnnotation.IsProxied); 105Assert.True(endpointAnnotation.IsProxied); 119Assert.True(endpointAnnotation.IsProxied); 198Assert.False(endpointAnnotation.IsProxied); 242Assert.True(endpointAnnotation.IsProxied);
Aspire.Hosting.Tests (1)
WithEndpointTests.cs (1)
615Assert.True(endpoint.IsProxied);