它可以使用WebRequest,但我使用chilkat,因为它支持ssh但我无法获取我的网站的HTML
Chilkat.Http http = new Chilkat.Http();
bool success;
// Any string unlocks the component for the 1st 30-days.
success = http.UnlockComponent("Anything for 30-day trial");
if (success != true) {
Console.WriteLine(http.LastErrorText);
return;
}
// Send the HTTP GET and return the content in a string.
string html;
html = http.QuickGetStr("https://mmo4me.com/");
TextBox1.Text = html;
答案 0 :(得分:0)
您推荐的网站(https://mmo4me.com)正在使用TLS1.2 ECDHE / ECDSA进行Hash Alghorithm签名。
看起来Chilkat组件不支持ECDHE / ECDSA。