17 references to Scheme
Aspire.Hosting (5)
ApplicationModel\EndpointReference.cs (2)
56
EndpointProperty.
Scheme
=> Binding("scheme"),
179
EndpointProperty.
Scheme
=> new(Endpoint.Scheme),
Dashboard\DashboardLifecycleHook.cs (2)
355
ReferenceExpression.Create($"{e.Property(EndpointProperty.
Scheme
)}://{e.EndpointAnnotation.TargetHost}:{e.Property(EndpointProperty.TargetPort)}");
380
aspnetCoreUrls.Append($"{e.Property(EndpointProperty.
Scheme
)}://{e.EndpointAnnotation.TargetHost}:{e.Property(EndpointProperty.TargetPort)}");
ProjectResourceBuilderExtensions.cs (1)
763
aspnetCoreUrls.Append($"{e.Property(EndpointProperty.
Scheme
)}://{e.EndpointAnnotation.TargetHost}:{e.Property(EndpointProperty.TargetPort)}");
Aspire.Hosting.Azure.AppContainers (1)
ContainerAppContext.cs (1)
518
EndpointProperty.
Scheme
=> scheme,
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebsiteContext.cs (1)
329
EndpointProperty.
Scheme
=> mapping.Scheme,
Aspire.Hosting.Azure.Storage (1)
AzureStorageEmulatorConnectionString.cs (1)
35
builder.Append($"{key}={endpoint.Property(EndpointProperty.
Scheme
)}://{endpoint.Property(EndpointProperty.IPV4Host)}:{endpoint.Property(EndpointProperty.Port)}/devstoreaccount1;");
Aspire.Hosting.Azure.Tests (3)
AzureContainerAppsTests.cs (2)
311
context.EnvironmentVariables["SCHEME"] = httpEp.Property(EndpointProperty.
Scheme
);
388
context.EnvironmentVariables["SCHEME"] = httpEp.Property(EndpointProperty.
Scheme
);
src\Aspire.Hosting.Azure.Storage\AzureStorageEmulatorConnectionString.cs (1)
35
builder.Append($"{key}={endpoint.Property(EndpointProperty.
Scheme
)}://{endpoint.Property(EndpointProperty.IPV4Host)}:{endpoint.Property(EndpointProperty.Port)}/devstoreaccount1;");
Aspire.Hosting.Docker (1)
DockerComposeServiceResourceExtensions.cs (1)
97
EndpointProperty.
Scheme
=> mapping.Scheme,
Aspire.Hosting.Kubernetes (1)
KubernetesServiceResourceExtensions.cs (1)
107
EndpointProperty.
Scheme
=> scheme,
Aspire.Hosting.Tests (4)
ExpressionResolverTests.cs (4)
222
{ "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)}/;") },
229
{ "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)}/;") },