google api dotnet client - CalendarService.Events.List.Fields property -


i using .net client library v3 work calendar items. how can use "fields" property in calendarservice.events.list? takes string tried passing comma separated string getting error.

note: trying fields work since fields coming null when running query using ".execute()". maybe need bind specific calendar item ?

var calendarservice = new calendarservice(initializer); var asdfs12 = calendarservice.events.list("zoolander@dodgeball.com"); asdfs12.maxresults = 300;            asdfs12.timemin = datetime.now.adddays(-20); asdfs12.timemax = datetime.now.adddays(30); asdfs12.fields = "organizer,description"; events asdfs = asdfs12.execute(); 


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -