Closed GoogleCodeExporter closed 9 years ago
The .List(..) operation returns a ListRequest object, which has several
properties -- one of them is the "Format" property:
http://docs.google-api-dotnet-client.googlecode.com/hg/docs/html/AllMembers_T_Google_Apis_Translate_v2_TranslationsResource_ListRequest.htm
In order to change the value of the property, you will have to change your code
slightly:
var request = service.Translations.List(contantArr, "en");
request.Format = "...";
TranslationsListResponse response = request.Fetch();
Hope this helps!
Original comment by mlinder...@gmail.com
on 11 Jan 2012 at 1:55
Thank you. It works.
Original comment by olrybc...@gmail.com
on 11 Jan 2012 at 9:06
Original issue reported on code.google.com by
olrybc...@gmail.com
on 10 Jan 2012 at 10:30