1 instantiation of EndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
656
return new
EndpointInfo
(address, endpoint, endpointConfiguration.IsHttps);
16 references to EndpointInfo
Aspire.Dashboard (9)
DashboardWebApplication.cs (9)
53
private readonly List<Func<
EndpointInfo
>> _frontendEndPointAccessor = new();
54
private Func<
EndpointInfo
>? _otlpServiceGrpcEndPointAccessor;
55
private Func<
EndpointInfo
>? _otlpServiceHttpEndPointAccessor;
57
public List<Func<
EndpointInfo
>> FrontendEndPointsAccessor
70
public Func<
EndpointInfo
> FrontendSingleEndPointAccessor
87
public Func<
EndpointInfo
> OtlpServiceGrpcEndPointAccessor
92
public Func<
EndpointInfo
> OtlpServiceHttpEndPointAccessor
303
EndpointInfo
? frontendEndpointInfo = null;
644
static Func<
EndpointInfo
> CreateEndPointAccessor(EndpointConfiguration endpointConfiguration)
Aspire.Dashboard.Tests (7)
Integration\OtlpHttpServiceTests.cs (5)
226
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
254
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
279
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
308
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
337
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\StartupTests.cs (2)
785
private static void AssertIPv4OrIPv6Endpoint(Func<
EndpointInfo
> endPointAccessor)
792
private static void AssertDynamicIPEndpoint(Func<
EndpointInfo
> endPointAccessor)