1 instantiation of ResolvedEndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
787
return new
ResolvedEndpointInfo
(address, endpoint, endpointConfiguration.IsHttps);
27 references to ResolvedEndpointInfo
Aspire.Dashboard (10)
DashboardWebApplication.cs (10)
74
private readonly List<Func<
ResolvedEndpointInfo
>> _frontendEndPointAccessor = new();
75
private Func<
ResolvedEndpointInfo
>? _otlpServiceGrpcEndPointAccessor;
76
private Func<
ResolvedEndpointInfo
>? _otlpServiceHttpEndPointAccessor;
78
public List<Func<
ResolvedEndpointInfo
>> FrontendEndPointsAccessor
91
public Func<
ResolvedEndpointInfo
> FrontendSingleEndPointAccessor
108
public Func<
ResolvedEndpointInfo
> OtlpServiceGrpcEndPointAccessor
113
public Func<
ResolvedEndpointInfo
> OtlpServiceHttpEndPointAccessor
414
ResolvedEndpointInfo
? frontendEndpointInfo = null;
589
private void PrintSummary(
ResolvedEndpointInfo
? frontendEndpointInfo)
775
static Func<
ResolvedEndpointInfo
> CreateEndPointAccessor(EndpointConfiguration endpointConfiguration)
Aspire.Dashboard.Tests (17)
Integration\FrontendBrowserTokenAuthTests.cs (7)
93
var
httpsEndpoint = endpoints.Single(endpoint => endpoint.IsHttps);
94
var
httpEndpoint = endpoints.Single(endpoint => !endpoint.IsHttps);
141
var
httpsEndpoint = endpoints.Single(endpoint => endpoint.IsHttps);
142
var
httpEndpoint = endpoints.Single(endpoint => !endpoint.IsHttps);
180
var
httpsEndpoint = endpoints.Single(endpoint => endpoint.IsHttps);
181
var
httpEndpoint = endpoints.Single(endpoint => !endpoint.IsHttps);
228
var
httpEndpoint = app.FrontendEndPointsAccessor
Integration\OtlpHttpServiceTests.cs (6)
236
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
267
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
314
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
339
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
368
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
397
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\Playwright\BrowserTokenAuthenticationTests.cs (2)
212
var
httpsEndpoint = endpoints.Single(e => e.IsHttps);
213
var
httpEndpoint = endpoints.Single(e => !e.IsHttps);
Integration\StartupTests.cs (2)
1129
private static void AssertIPv4OrIPv6Endpoint(Func<
ResolvedEndpointInfo
> endPointAccessor)
1136
private static void AssertDynamicIPEndpoint(Func<
ResolvedEndpointInfo
> endPointAccessor)