19 writes to IsProxied
Aspire.Hosting (2)
ApplicationModel\EndpointAnnotation.cs (1)
102IsProxied = isProxied;
Dcp\DcpExecutor.cs (1)
1116endpoint.IsProxied = false;
Aspire.Hosting.Tests (15)
DistributedApplicationTests.cs (7)
1469endpoint.IsProxied = false; 1487endpoint.IsProxied = false; 1509e.IsProxied = false; 1545e.IsProxied = false; 1612endpoint.IsProxied = false; 1618endpoint.IsProxied = false; 1757endpoint.IsProxied = false;
ProjectResourceTests.cs (2)
668e.IsProxied = isProxied; 674e.IsProxied = isProxied;
WithEndpointTests.cs (6)
42endpoint.IsProxied = false; 52endpoint.IsProxied = true; 56endpoint.IsProxied = false; 77endpoint.IsProxied = false; 87endpoint.IsProxied = true; 91endpoint.IsProxied = false;
ProxylessEndToEnd.AppHost (2)
Program.cs (2)
8endpoint.IsProxied = false; 14e.IsProxied = false;
19 references to IsProxied
Aspire.Hosting (11)
ApplicationModel\EndpointAnnotation.cs (2)
131get => _port ?? (IsProxied || _portSetToNull ? null : _targetPort); 148get => _targetPort ?? (IsProxied || _targetPortSetToNull ? null : _port);
Dcp\DcpExecutor.cs (9)
958if (!svc.HasCompleteAddress && sp.EndpointAnnotation.IsProxied) 965if (!sp.EndpointAnnotation.IsProxied && svc.AllocatedPort is null) 1120if (_options.Value.RandomizePorts && endpoint.IsProxied && endpoint.Port != null) 1140if (!endpoint.IsProxied) 1212if (!endpoint.IsProxied) 2285else if (!ea.IsProxied) 2299Debug.Assert(ea.IsProxied); 2304$"The endpoint '{ea.Name}' for resource '{modelResourceName}' requested a proxy ({nameof(ea.IsProxied)} is true). Non-container resources cannot be proxied when both {nameof(ea.TargetPort)} and {nameof(ea.Port)} are specified with the same value."); 2803if (!ea.IsProxied && ea.Port is int)
Aspire.Hosting.Azure.Tests (7)
AzureFunctionsTests.cs (7)
55Assert.False(endpointAnnotation.IsProxied); 83Assert.True(endpointAnnotation.IsProxied); 106Assert.False(endpointAnnotation.IsProxied); 120Assert.True(endpointAnnotation.IsProxied); 134Assert.True(endpointAnnotation.IsProxied); 218Assert.False(endpointAnnotation.IsProxied); 262Assert.True(endpointAnnotation.IsProxied);
Aspire.Hosting.Tests (1)
WithEndpointTests.cs (1)
592Assert.True(endpoint.IsProxied);