66 references to WithHttpsEndpoint
Aspire.Hosting.Azure.Functions (2)
AzureFunctionsProjectResourceExtensions.cs (2)
204
.
WithHttpsEndpoint
(targetPort: 8080);
230
builder.
WithHttpsEndpoint
(port: port, targetPort: port, isProxied: port == null);
Aspire.Hosting.Azure.Tests (14)
AzureAppServiceTests.cs (4)
380
.
WithHttpsEndpoint
()
523
.
WithHttpsEndpoint
(targetPort:8000)
562
.
WithHttpsEndpoint
(targetPort: 8000)
597
.
WithHttpsEndpoint
(targetPort: 8000)
AzureContainerAppsTests.cs (6)
292
.
WithHttpsEndpoint
()
370
.
WithHttpsEndpoint
()
951
.
WithHttpsEndpoint
();
1209
.
WithHttpsEndpoint
(port: 8081);
1931
.
WithHttpsEndpoint
(targetPort: 1111)
1936
.
WithHttpsEndpoint
(targetPort: 1111)
AzureProvisioningResourceExtensionsTests.cs (1)
18
.
WithHttpsEndpoint
();
AzureWebPubSubExtensionsTests.cs (3)
117
var serviceA = builder.AddProject<ProjectA>("serviceA", o => o.ExcludeLaunchProfile = true).
WithHttpsEndpoint
();
148
var serviceA = builder.AddProject<ProjectA>("serviceA", o => o.ExcludeLaunchProfile = true).
WithHttpsEndpoint
();
174
var serviceA = builder.AddProject<ProjectA>("serviceA", o => o.ExcludeLaunchProfile = true).
WithHttpsEndpoint
();
Aspire.Hosting.DevTunnels.Tests (10)
DevTunnelResourceBuilderExtensionsTests.cs (10)
17
.
WithHttpsEndpoint
();
61
.
WithHttpsEndpoint
();
76
.
WithHttpsEndpoint
(name: "https");
93
.
WithHttpsEndpoint
(name: "https");
110
.
WithHttpsEndpoint
(name: "https");
128
.
WithHttpsEndpoint
(name: "https");
147
.
WithHttpsEndpoint
(name: "https");
149
.
WithHttpsEndpoint
(name: "https");
169
.
WithHttpsEndpoint
(name: "https");
188
.
WithHttpsEndpoint
(name: "https");
Aspire.Hosting.Kubernetes.Tests (1)
KubernetesPublisherTests.cs (1)
247
.
WithHttpsEndpoint
()
Aspire.Hosting.Tests (32)
ProjectResourceTests.cs (2)
327
.
WithHttpsEndpoint
(port: 5001, name: "https");
350
.
WithHttpsEndpoint
(port: 5001, name: "https")
ResourceWithProbeTests.cs (2)
15
resource.
WithHttpsEndpoint
();
48
resource.
WithHttpsEndpoint
(8080, 8080, endpointName);
WithEndpointTests.cs (18)
163
.
WithHttpsEndpoint
(3000, 1000, name: "mybinding")
164
.
WithHttpsEndpoint
(3000, 2000, name: "mybinding");
178
.
WithHttpsEndpoint
(3000, 1000)
179
.
WithHttpsEndpoint
(3000, 2000);
192
.
WithHttpsEndpoint
(1000, name: "mybinding")
193
.
WithHttpsEndpoint
(2000, name: "mybinding");
232
.
WithHttpsEndpoint
(name: "ep2")
306
.
WithHttpsEndpoint
(name: "h2", targetPort: 3001);
360
.
WithHttpsEndpoint
(name: "h4");
443
.
WithHttpsEndpoint
(name: "hps") // Won't get targetPort since it's the first https
444
.
WithHttpsEndpoint
(name: "hps2") // Will get a targetPort
509
.
WithHttpsEndpoint
()
510
.
WithHttpsEndpoint
(name: "hps1", port: 7001)
511
.
WithHttpsEndpoint
(name: "hps2", port: 7002, targetPort: 7003)
512
.
WithHttpsEndpoint
(name: "hps3", targetPort: 7004)
513
.
WithHttpsEndpoint
(name: "hps4", targetPort: 7005)
608
.
WithHttpsEndpoint
()
642
.
WithHttpsEndpoint
()
WithEnvironmentTests.cs (1)
45
.
WithHttpsEndpoint
(port: 1000, targetPort: 2000, "mybinding")
WithReferenceTests.cs (8)
21
.
WithHttpsEndpoint
(1000, 2000, "mybinding")
52
.
WithHttpsEndpoint
(1000, 2000, "mybinding")
98
.
WithHttpsEndpoint
(1000, 2000, "mybinding")
100
.
WithHttpsEndpoint
(1000, 3000, "myconflictingbinding")
126
.
WithHttpsEndpoint
(1000, 2000, "mybinding")
154
.
WithHttpsEndpoint
(1000, 2000, "mybinding")
156
.
WithHttpsEndpoint
(1000, 3000, "mybinding2")
184
.
WithHttpsEndpoint
(1000, 2000, "mybinding")
WithUrlsTests.cs (1)
188
.
WithHttpsEndpoint
();
Aspire.Hosting.Yarp.Tests (5)
YarpClusterTests.cs (5)
25
.
WithHttpsEndpoint
(name: "anotherendpoint");
43
.
WithHttpsEndpoint
();
68
.
WithHttpsEndpoint
()
69
.
WithHttpsEndpoint
(name: "grpc");
81
.
WithHttpsEndpoint
();
AspireWithNode.AppHost (2)
DevCertHostingExtensions.cs (1)
17
/// Use <see cref="ResourceBuilderExtensions.
WithHttpsEndpoint
{TResource}"/> to configure an HTTPS endpoint.
NodeHostingExtensions.cs (1)
18
builder.
WithHttpsEndpoint
(env: "HTTPS_PORT");