15 references to Scheme
Aspire.Hosting (3)
ApplicationModel\EndpointReference.cs (2)
56EndpointProperty.Scheme => Binding("scheme"), 179EndpointProperty.Scheme => new(Endpoint.Scheme),
ProjectResourceBuilderExtensions.cs (1)
765aspnetCoreUrls.Append($"{e.Property(EndpointProperty.Scheme)}://{targetHost}:{e.Property(EndpointProperty.TargetPort)}");
Aspire.Hosting.Azure.AppContainers (1)
ContainerAppContext.cs (1)
478EndpointProperty.Scheme => scheme,
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebsiteContext.cs (1)
328EndpointProperty.Scheme => mapping.Scheme,
Aspire.Hosting.Azure.Storage (1)
AzureStorageEmulatorConnectionString.cs (1)
35builder.Append($"{key}={endpoint.Property(EndpointProperty.Scheme)}://{endpoint.Property(EndpointProperty.IPV4Host)}:{endpoint.Property(EndpointProperty.Port)}/devstoreaccount1;");
Aspire.Hosting.Azure.Tests (3)
AzureContainerAppsTests.cs (2)
311context.EnvironmentVariables["SCHEME"] = httpEp.Property(EndpointProperty.Scheme); 388context.EnvironmentVariables["SCHEME"] = httpEp.Property(EndpointProperty.Scheme);
src\Aspire.Hosting.Azure.Storage\AzureStorageEmulatorConnectionString.cs (1)
35builder.Append($"{key}={endpoint.Property(EndpointProperty.Scheme)}://{endpoint.Property(EndpointProperty.IPV4Host)}:{endpoint.Property(EndpointProperty.Port)}/devstoreaccount1;");
Aspire.Hosting.Docker (1)
DockerComposeServiceResourceExtensions.cs (1)
97EndpointProperty.Scheme => mapping.Scheme,
Aspire.Hosting.Kubernetes (1)
KubernetesServiceResourceExtensions.cs (1)
107EndpointProperty.Scheme => scheme,
Aspire.Hosting.Tests (4)
ExpressionResolverTests.cs (4)
223{ "TwoFullEndpoints", ReferenceExpression.Create($"Test1={Endpoint1.Property(EndpointProperty.Scheme)}://{Endpoint1.Property(EndpointProperty.IPV4Host)}:{Endpoint1.Property(EndpointProperty.Port)}/;Test2={Endpoint2.Property(EndpointProperty.Scheme)}://{Endpoint2.Property(EndpointProperty.Host)}:{Endpoint2.Property(EndpointProperty.Port)}/;") }, 230{ "FullAndPartial", ReferenceExpression.Create($"Test1={Endpoint1.Property(EndpointProperty.Scheme)}://{Endpoint1.Property(EndpointProperty.IPV4Host)}:{Endpoint1.Property(EndpointProperty.Port)}/;Test2={Endpoint2.Property(EndpointProperty.Scheme)}://localhost:{Endpoint2.Property(EndpointProperty.Port)}/;") },