1 instantiation of ResolvedEndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
715
return new
ResolvedEndpointInfo
(address, endpoint, endpointConfiguration.IsHttps);
19 references to ResolvedEndpointInfo
Aspire.Dashboard (11)
DashboardWebApplication.cs (11)
58
private readonly List<Func<
ResolvedEndpointInfo
>> _frontendEndPointAccessor = new();
59
private Func<
ResolvedEndpointInfo
>? _otlpServiceGrpcEndPointAccessor;
60
private Func<
ResolvedEndpointInfo
>? _otlpServiceHttpEndPointAccessor;
61
private Func<
ResolvedEndpointInfo
>? _mcpEndPointAccessor;
63
public List<Func<
ResolvedEndpointInfo
>> FrontendEndPointsAccessor
76
public Func<
ResolvedEndpointInfo
> FrontendSingleEndPointAccessor
93
public Func<
ResolvedEndpointInfo
> OtlpServiceGrpcEndPointAccessor
98
public Func<
ResolvedEndpointInfo
> OtlpServiceHttpEndPointAccessor
103
public Func<
ResolvedEndpointInfo
> McpEndPointAccessor
361
ResolvedEndpointInfo
? frontendEndpointInfo = null;
703
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)
1046
private static void AssertIPv4OrIPv6Endpoint(Func<
ResolvedEndpointInfo
> endPointAccessor)
1053
private static void AssertDynamicIPEndpoint(Func<
ResolvedEndpointInfo
> endPointAccessor)