4 implementations of TryResolvePeer
Aspire.Dashboard (3)
Model\BrowserLinkOutgoingPeerResolver.cs (1)
22public bool TryResolvePeer(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResource)
Model\DashboardSqliteOutgoingPeerResolver.cs (1)
12public bool TryResolvePeer(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResource)
Model\ResourceOutgoingPeerResolver.cs (1)
178public bool TryResolvePeer(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResource)
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\TestOutgoingPeerResolver.cs (1)
38public bool TryResolvePeer(KeyValuePair<string, string>[] attributes, out string? name, out ResourceViewModel? matchedResourced)
2 references to TryResolvePeer
Aspire.Dashboard (1)
Otlp\Storage\SqliteTelemetryRepository.Traces.Writes.cs (1)
1189if (!resolver.TryResolvePeer(attributes, out var name, out var matchedResource))
Aspire.Dashboard.Tests (1)
BrowserLinkOutgoingPeerResolverTests.cs (1)
116return resolver.TryResolvePeer(attributes, out peerName, out _);