3 instantiations of TokenCandidate
aspire (3)
Telemetry\InternalMicrosoftDetector.cs (3)
890
tokenCandidates.Add(new
TokenCandidate
(value));
1494
yield return new
TokenCandidate
(value);
1546
yield return new
TokenCandidate
(token);
9 references to TokenCandidate
aspire (9)
Telemetry\InternalMicrosoftDetector.cs (9)
883
var tokenCandidates = new List<
TokenCandidate
>();
909
private async Task<GitHubMembershipCheckResult> CheckAnyGitHubMembershipCandidateAsync(IReadOnlyList<
TokenCandidate
> candidates, CancellationToken cancellationToken)
961
private async Task<GitHubMembershipCheckResult> CheckGitHubMembershipCandidateAsync(
TokenCandidate
candidate, CancellationToken cancellationToken)
1477
private IEnumerable<
TokenCandidate
> GetGitHubTokenEnvironmentCandidates(CancellationToken cancellationToken)
1499
private static List<
TokenCandidate
> DeduplicateTokenCandidates(IEnumerable<
TokenCandidate
> candidates)
1502
var result = new List<
TokenCandidate
>();
1504
foreach (
var
candidate in candidates)
1515
private static IEnumerable<
TokenCandidate
> ExtractGitHubTokenCandidates(string filePath, CancellationToken cancellationToken)