当URL未受到保护时,以下情况良好。
string imageURL = ("https://api.blah.blah/customers/" + userID.ToString() + "/photo");
pictureBox1.LoadAsync(imageURL);
现在我们支持基本身份验证,我希望我能做到这一点:
string imageURL = ("https://username:password@api.blah.blah/customers/" + userID.ToString() + "/photo");
pictureBox1.LoadAsync(imageURL);
但我没有运气。任何帮助将不胜感激。