2 writes to AllowAnonymous
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
234
return 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)
167
if (options.
AllowAnonymous
.HasValue)
172
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)
67
Assert.True(port.Options.
AllowAnonymous
);