我希望异步 HTTP 回调在 C# 中使用 MSXML2 API 工作。我通过winform调用它。
x = new MSXML2.XMLHTTPClass();
x.open("POST", "http://localhost/MyHandler.ashx", true, null, null);
x.send("<test/>");
x.onreadystatechange = ???? //// What to specify here in C#?
var response = x.responseText; //// Works great synchronous!
我尝试了 Action()、匿名代表、匿名类型,但没有任何效果!可悲的是,在互联网上存在这个VB.NET 模块驱动的解决方案,但我不确定如何在 C# 中完成。
任何帮助将不胜感激!