Lado Tonia

Results 1 issues of Lado Tonia

HttpBasicAuthenticator appends the header: ``` public HttpBasicAuthenticator(string username, string password) { var token = Convert.ToBase64String(Encoding.UTF8.GetBytes(string.Format("{0}:{1}", username, password))); authHeader = string.Format("Basic {0}", token); } ``` while all the api docs suggest...

enhancement
documentation
dotnet