0

我正在写一个 youtube 上传软件。其实我的问题在这里很笼统。

Google.GData.Client产生异常。但我不知道如何达到才能写?

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

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

在此处输入图像描述

4

2 回答 2

2

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

catch (Google.GData.Client.GDataRequestException ex)
{
    Console.WriteLine(ex.ResponseString);
}
于 2013-06-07T16:23:35.870 回答
0
try {
 // your GDataRequest code goes here
 } catch  (GDataRequestException e )  {
  // your error code goes here
}
于 2014-05-20T06:27:40.790 回答