-1
在我的.net應用程序中,我正在使用WebClient。我有響應回調類似於:.net WebClient http錯誤代碼
private void CBMethod(object sender, UploadStringCompletedEventArgs e)
{
if (e.Error == null)
{
//Process result
}
}
現在,在錯誤的情況下,我要檢索的HTTP錯誤代碼。對於例如401未經授權的請求。我只想讓代碼
你知道如何使用調試器..?設置通過代碼,當你得到如果聲明..檢查e。並查看其他屬性的暴露情況。 – MethodMan 2014-10-02 21:59:12