我的 WPF 应用程序有问题,它在我的回调函数中返回“远程服务器返回错误:(500) 内部服务器错误”。
我有以下代码;
System.Diagnostics.Debug.WriteLine("GetProduct DownloadStringAsync ");
try
{
GetProduct.DownloadStringAsync(uri);
}
catch (Exception ee)
{
System.Diagnostics.Debug.WriteLine("CATCH GetProduct DownloadStringAsync " + ee.Message);
}
在我的回调方法中:
private void GetProductCallBack(Object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error != null)
{
. . .
e.Error = "远程服务器返回错误:(500) 内部服务器错误"
是服务器访问问题还是我的代码有问题?关于URI,已经过测试,没问题。
谢谢