1 instantiation of ResolvedEndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
694
return new
ResolvedEndpointInfo
(address, endpoint, endpointConfiguration.IsHttps);
19 references to ResolvedEndpointInfo
Aspire.Dashboard (11)
DashboardWebApplication.cs (11)
57
private readonly List<Func<
ResolvedEndpointInfo
>> _frontendEndPointAccessor = new();
58
private Func<
ResolvedEndpointInfo
>? _otlpServiceGrpcEndPointAccessor;
59
private Func<
ResolvedEndpointInfo
>? _otlpServiceHttpEndPointAccessor;
60
private Func<
ResolvedEndpointInfo
>? _mcpEndPointAccessor;
62
public List<Func<
ResolvedEndpointInfo
>> FrontendEndPointsAccessor
75
public Func<
ResolvedEndpointInfo
> FrontendSingleEndPointAccessor
92
public Func<
ResolvedEndpointInfo
> OtlpServiceGrpcEndPointAccessor
97
public Func<
ResolvedEndpointInfo
> OtlpServiceHttpEndPointAccessor
102
public Func<
ResolvedEndpointInfo
> McpEndPointAccessor
349
ResolvedEndpointInfo
? frontendEndpointInfo = null;
682
static Func<
ResolvedEndpointInfo
> CreateEndPointAccessor(EndpointConfiguration endpointConfiguration)
Aspire.Dashboard.Tests (8)
Integration\OtlpHttpServiceTests.cs (6)
230
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
261
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
308
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
333
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
362
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
391
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\StartupTests.cs (2)
996
private static void AssertIPv4OrIPv6Endpoint(Func<
ResolvedEndpointInfo
> endPointAccessor)
1003
private static void AssertDynamicIPEndpoint(Func<
ResolvedEndpointInfo
> endPointAccessor)