1 instantiation of AuthInfo
Microsoft.NET.Build.Containers (1)
AuthHandshakeMessageHandler.cs (1)
104
authInfo = new
AuthInfo
(realm, service, scope);
6 references to AuthInfo
Microsoft.NET.Build.Containers (6)
AuthHandshakeMessageHandler.cs (6)
58
private static bool TryParseAuthenticationInfo(HttpResponseMessage msg, [NotNullWhen(true)] out string? scheme, out
AuthInfo
? bearerAuthInfo)
96
static bool TryParseBearerAuthInfo(Dictionary<string, string> authValues, [NotNullWhen(true)] out
AuthInfo
? authInfo)
155
private async Task<(AuthenticationHeaderValue, DateTimeOffset)?> GetAuthenticationAsync(string registry, string scheme,
AuthInfo
? bearerAuthInfo, CancellationToken cancellationToken)
258
private async Task<(AuthenticationHeaderValue, DateTimeOffset)?> TryOAuthPostAsync(DockerCredentials privateRepoCreds,
AuthInfo
bearerAuthInfo, CancellationToken cancellationToken)
315
private async Task<(AuthenticationHeaderValue, DateTimeOffset)?> TryTokenGetAsync(DockerCredentials privateRepoCreds,
AuthInfo
bearerAuthInfo, CancellationToken cancellationToken)
400
else if (response is { StatusCode: HttpStatusCode.Unauthorized } && TryParseAuthenticationInfo(response, out string? scheme, out
AuthInfo
? authInfo))