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