SORU
31 AĞUSTOS 2010, Salı


Sistem.Net.WebException http kodları

kolay bir yolu System.Net.WebException bir http kodu almak için var mı?

CEVAP
1 EYLÜL 2010, ÇARŞAMBA


Belki de böyle bir şey...

try
{
    // ...
}
catch (WebException ex)
{
    if (ex.Status == WebExceptionStatus.ProtocolError)
    {
        var response = ex.Response as HttpWebResponse;
        if (response != null)
        {
            Console.WriteLine("HTTP Status Code: "   (int)response.StatusCode);
        }
        else
        {
            // no http status code available
        }
    }
    else
    {
        // no http status code available
    }
}

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Britec09

    Britec09

    4 Mart 2009
  • eisleyhead

    eisleyhead

    11 Ocak 2006
  • ThePhestor

    ThePhestor

    22 Mart 2011