2 writes to AllowAnonymous
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
254
AllowAnonymous
= allowAnonymous,
370
tunnelBuilder.Resource.Options.
AllowAnonymous
= true;
5 references to AllowAnonymous
Aspire.Hosting.DevTunnels (4)
DevTunnelCli.cs (1)
65
.AddIfTrue("--allow-anonymous", options.
AllowAnonymous
)
DevTunnelCliClient.cs (1)
125
if (options.
AllowAnonymous
)
DevTunnelOptions.cs (1)
82
internal string ToLoggerString() => $"{{ Description={Description}, AllowAnonymous={
AllowAnonymous
}, Labels=[{string.Join(", ", Labels ?? [])}], Region={Region}, ExpirationHours={ExpirationHours} }}";
DevTunnelResourceBuilderExtensions.cs (1)
363
/// Sets <see cref="DevTunnelOptions.
AllowAnonymous
"/> to <c>true</c> on <see cref="DevTunnelResource.Options"/> .
Aspire.Hosting.DevTunnels.Tests (1)
DevTunnelResourceBuilderExtensionsTests.cs (1)
52
Assert.True(tunnel.Resource.Options.
AllowAnonymous
);