2 writes to AllowAnonymous
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
233
return tunnelBuilder.WithReference(resourceBuilder, new DevTunnelPortOptions {
AllowAnonymous
= allowAnonymous });
286
=> tunnelBuilder.WithReference(targetEndpoint, new DevTunnelPortOptions {
AllowAnonymous
= allowAnonymous });
4 references to AllowAnonymous
Aspire.Hosting.DevTunnels (3)
DevTunnelCliClient.cs (2)
141
if (options.
AllowAnonymous
.HasValue)
146
var deny = !options.
AllowAnonymous
.Value;
DevTunnelOptions.cs (1)
54
internal string ToLoggerString() => $"{{ Description={Description}, AllowAnonymous={
AllowAnonymous
}, Protocol={Protocol}, Labels=[{string.Join(", ", Labels ?? [])}] }}";
Aspire.Hosting.DevTunnels.Tests (1)
DevTunnelResourceBuilderExtensionsTests.cs (1)
70
Assert.True(port.Options.
AllowAnonymous
);