4 references to BasicAuthScheme
Microsoft.NET.Build.Containers (4)
AuthHandshakeMessageHandler.cs (4)
75if (header.Scheme.Equals(BasicAuthScheme, StringComparison.OrdinalIgnoreCase)) 168if (scheme.Equals(BasicAuthScheme, StringComparison.OrdinalIgnoreCase)) 170var authValue = new AuthenticationHeaderValue(BasicAuthScheme, Convert.ToBase64String(Encoding.ASCII.GetBytes($"{privateRepoCreds.Username}:{privateRepoCreds.Password}"))); 319var header = new AuthenticationHeaderValue(BasicAuthScheme, Convert.ToBase64String(Encoding.ASCII.GetBytes($"{privateRepoCreds.Username}:{privateRepoCreds.Password}")));