如何阅读Google.GData.Client.GDataRequestException

时间:2013-06-07 14:11:34

标签: c# exception exception-handling

我正在编写一个youtube上传软件。其实我的问题在这里是通用的。

Google.GData.Client会产生异常。但我不知道如何写作?

我的意思是如何访问它?我试过E.但没有Google.Gdata

我需要访问Google.GData.Client.GDataRequestException.ResponceString

enter image description here

2 个答案:

答案 0 :(得分:2)

您需要更改catch子句以指定例外类型(在您的情况下为Google.GData.Client.GDataRequestException),以便您可以访问其成员。

catch (Google.GData.Client.GDataRequestException ex)
{
    Console.WriteLine(ex.ResponseString);
}

答案 1 :(得分:0)

try {
 // your GDataRequest code goes here
 } catch  (GDataRequestException e )  {
  // your error code goes here
}