I am getting Events with below code:
EventsResource.ListRequest req = service.Events.List(calresult[i].Id); DateTime minLimit = DateTime.Now.AddMonths(-1); DateTime maxLimit = DateTime.Now.AddMonths(3); req.TimeZone = googleapiTimezone; //Pacific/Honolulu req.TimeMin = minLimit; req.TimeMax = maxLimit; var events = req.Execute().Items;The code is working find except it is not considering the Timezone parameter in any case it returns the Event DateTime info in the default event timezone.
What am i doing wrong here?
Thank you