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