20 writes to IsProxied
Aspire.Hosting (1)
ApplicationModel\EndpointAnnotation.cs (1)
53IsProxied = isProxied;
Aspire.Hosting.Tests (15)
DistributedApplicationTests.cs (7)
607endpoint.IsProxied = false; 626endpoint.IsProxied = false; 648e.IsProxied = false; 680e.IsProxied = false; 743endpoint.IsProxied = false; 749endpoint.IsProxied = false; 796endpoint.IsProxied = false;
ProjectResourceTests.cs (2)
605e.IsProxied = isProxied; 611e.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;
TestingAppHost1.AppHost (2)
Program.cs (2)
10.WithEndpoint("http", ea => ea.IsProxied = false) 11.WithEndpoint("https", ea => ea.IsProxied = false)
6 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)
751if (ep.EndpointAnnotation.IsProxied) 949if (!svc.HasCompleteAddress && sp.EndpointAnnotation.IsProxied) 955if (!sp.EndpointAnnotation.IsProxied && svc.AllocatedPort is null) 1526if (!ea.IsProxied && ea.Port is int)