2 writes to AllowAnonymous
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
233return 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)
141if (options.AllowAnonymous.HasValue) 146var deny = !options.AllowAnonymous.Value;
DevTunnelOptions.cs (1)
54internal string ToLoggerString() => $"{{ Description={Description}, AllowAnonymous={AllowAnonymous}, Protocol={Protocol}, Labels=[{string.Join(", ", Labels ?? [])}] }}";
Aspire.Hosting.DevTunnels.Tests (1)
DevTunnelResourceBuilderExtensionsTests.cs (1)
70Assert.True(port.Options.AllowAnonymous);