9 instantiations of AccessControlEntry
Aspire.Hosting.DevTunnels.Tests (9)
DevTunnelAccessStatusTests.cs (9)
22AccessControlEntries = [new("Anonymous", IsDeny: false, IsInherited: true, [], ["connect"])] 32AccessControlEntries = [new("Anonymous", IsDeny: false, IsInherited: false, [], ["connect"])] 43new("Anonymous", IsDeny: false, IsInherited: true, [], ["connect"]), 44new("Anonymous", IsDeny: true, IsInherited: false, [], ["connect"]) 56new("Anonymous", IsDeny: true, IsInherited: false, [], ["connect"]) 68new("Anonymous", IsDeny: false, IsInherited: true, [], ["connect"]), 69new("Anonymous", IsDeny: false, IsInherited: false, [], ["connect"]) 81new("Something", IsDeny: false, IsInherited: false, [], ["random"]), 82new("Something", IsDeny: false, IsInherited: false, [], ["random"])
2 references to AccessControlEntry
Aspire.Hosting.DevTunnels (2)
IDevTunnelClient.cs (2)
48public IReadOnlyList<AccessControlEntry> AccessControlEntries { get; init; } = []; 57static bool HasConnectScope(AccessControlEntry entry) => entry.Scopes is { } scopes && scopes.Any(s => string.Equals(s, ConnectScope, StringComparison.OrdinalIgnoreCase));