2 writes to AllowAnonymous
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
234return tunnelBuilder.WithReference(resourceBuilder, new DevTunnelPortOptions { AllowAnonymous = allowAnonymous }); 287=> tunnelBuilder.WithReference(targetEndpoint, new DevTunnelPortOptions { AllowAnonymous = allowAnonymous });
4 references to AllowAnonymous
Aspire.Hosting.DevTunnels (3)
DevTunnelCliClient.cs (2)
167if (options.AllowAnonymous.HasValue) 172var 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)
67Assert.True(port.Options.AllowAnonymous);