2 writes to Protocol
Aspire.Hosting.DevTunnels (1)
DevTunnelResourceBuilderExtensions.cs (1)
562
portOptions.
Protocol
??= targetEndpoint.Scheme switch
Aspire.Hosting.Maui (1)
MauiOtlpExtensions.cs (1)
155
.WithReference(stubBuilder, new DevTunnelPortOptions {
Protocol
= "https" });
5 references to Protocol
Aspire.Hosting.DevTunnels (4)
DevTunnelCli.cs (1)
183
.AddIfNotNull("--protocol", options.
Protocol
)
DevTunnelOptions.cs (1)
83
internal string ToLoggerString() => $"{{ Description={Description}, AllowAnonymous={AllowAnonymous}, Protocol={
Protocol
}, Labels=[{string.Join(", ", Labels ?? [])}] }}";
DevTunnelResourceBuilderExtensions.cs (2)
558
if (portOptions.
Protocol
is { } proto && proto is not "http" and not "https" and not "auto")
681
new("Protocol", portOptions.
Protocol
),
Aspire.Hosting.DevTunnels.Tests (1)
TestDevTunnelClient.cs (1)
57
return Task.FromResult(new DevTunnelPortStatus(tunnelId, portNumber, options.
Protocol
?? "https", ClientConnections: 0));