6 references to UriScheme
Aspire.Hosting (4)
ApplicationModel\AllocatedEndpoint.cs (1)
132public string UriString => $"{UriScheme}://{EndPointString}";
Orchestrator\ApplicationOrchestrator.cs (3)
350Url = $"{allocatedEndpoint.UriScheme}://{endpoint.TargetHost}:{allocatedEndpoint.Port}", 359Url = $"{allocatedEndpoint.UriScheme}://{Environment.MachineName}:{allocatedEndpoint.Port}", 392Url = $"{allocatedEndpoint.UriScheme}://{resource.Name.ToLowerInvariant()}-{subdomainSuffix}.dev.localhost:{allocatedEndpoint.Port}",
Aspire.Hosting.Maui (1)
MauiOtlpExtensions.cs (1)
217target = new OtlpEndpointTarget(allocatedEndpoint.UriScheme, allocatedEndpoint.Port);
Aspire.Hosting.Tests (1)
Dcp\DcpExecutorTests.cs (1)
8925Assert.Equal(endpoint.UriScheme, allocatedEndpoint.UriScheme);