我正在写一个 youtube 上传软件。其实我的问题在这里很笼统。
Google.GData.Client
产生异常。但我不知道如何达到才能写?
我的意思是如何访问它?我试过 E. 但没有Google.Gdata
我需要访问 Google.GData.Client.GDataRequestException.ResponceString
我正在写一个 youtube 上传软件。其实我的问题在这里很笼统。
Google.GData.Client
产生异常。但我不知道如何达到才能写?
我的意思是如何访问它?我试过 E. 但没有Google.Gdata
我需要访问 Google.GData.Client.GDataRequestException.ResponceString
您需要更改您的catch
子句以指定异常的类型(在您的情况下为Google.GData.Client.GDataRequestException
),以便您可以访问其成员。
catch (Google.GData.Client.GDataRequestException ex)
{
Console.WriteLine(ex.ResponseString);
}
try {
// your GDataRequest code goes here
} catch (GDataRequestException e ) {
// your error code goes here
}