2 writes to AllowAnonymous
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
210
return tunnelBuilder.WithReference(resourceBuilder, new DevTunnelPortOptions {
AllowAnonymous
= allowAnonymous });
263
=> tunnelBuilder.WithReference(targetEndpoint, new DevTunnelPortOptions {
AllowAnonymous
= allowAnonymous });
5 references to AllowAnonymous
Aspire.Hosting.DevTunnels (4)
DevTunnelCliClient.cs (4)
70
if (options.
AllowAnonymous
.HasValue)
75
var deny = !options.
AllowAnonymous
.Value;
90
if (options.
AllowAnonymous
.HasValue)
95
var deny = !options.
AllowAnonymous
.Value;
Aspire.Hosting.DevTunnels.Tests (1)
DevTunnelResourceBuilderExtensionsTests.cs (1)
71
Assert.True(port.Options.
AllowAnonymous
);