2 writes to Protocol
Aspire.Hosting.DevTunnels (1)
DevTunnelResourceBuilderExtensions.cs (1)
481portOptions.Protocol ??= targetEndpoint.Scheme switch
Aspire.Hosting.Maui (1)
MauiOtlpExtensions.cs (1)
114.WithReference(stubBuilder, new DevTunnelPortOptions { Protocol = "https" });
4 references to Protocol
Aspire.Hosting.DevTunnels (4)
DevTunnelCli.cs (1)
182.AddIfNotNull("--protocol", options.Protocol)
DevTunnelOptions.cs (1)
54internal string ToLoggerString() => $"{{ Description={Description}, AllowAnonymous={AllowAnonymous}, Protocol={Protocol}, Labels=[{string.Join(", ", Labels ?? [])}] }}";
DevTunnelResourceBuilderExtensions.cs (2)
477if (portOptions.Protocol is { } proto && proto is not "http" and not "https" and not "auto") 583new("Protocol", portOptions.Protocol),