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