Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 795197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T22:26:25+00:00 2026-05-14T22:26:25+00:00

Two questions: How do you get events from a specific Calendar? The following link

  • 0

Two questions:

How do you get events from a specific Calendar? The following link gets events for your primary calendar: http://www.google.com/calendar/feeds/user@gmail.com/private/full .

And how do you get a contact’s birth date from the list of ContactEntry objects that is returned to you when using the ContactsService?

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T22:26:26+00:00Added an answer on May 14, 2026 at 10:26 pm

    I should probably provide some of my findings in-case somebody else wants to know this. As far as getting the dates from public calendars are concerned, the CalendarEntry class contains a generic list of AtomLink objects. The very first one’s AbsoluteUri property will provide you with the EventEntry objects for that calendar. Here is some sample code:

      foreach (CalendarEntry c in calendars)
      {
        Console.WriteLine(c.Title.Text);
        if (c.Links.Count > 0)
        {
          AtomLink link = c.Links[0];
          EventQuery query = new EventQuery();
          query.Uri = new Uri(link.AbsoluteUri);
          query.FutureEvents = true;
    
          // Tell the service to query:
          EventFeed calFeed = service.Query(query);
          foreach (EventEntry entry in calFeed.Entries)
          {
            Console.WriteLine(entry.Title.Text);
            foreach (When w in entry.Times)
              Console.WriteLine("\t" + w.StartTime);
          }
        }
        else
          Console.WriteLine("...no data found.");
    
        Console.ReadKey();
        Console.Clear();
      }
    

    I still don’t know how to get the Contact’s birth date :/ I’ll have a look at that when I have more time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Two Questions: Will I get different sequences of numbers for every seed I put
I have two questions. In my webpage (developed by me), I use the GET
Two questions: How can I import a file from a web address, without a
I have two models . Events and Questions. Event has many questions. I am
I have a two classes: public class Question { public IList<Answer> Answers { get;
Two questions: Can someone point me to unbiased data that compares .NET performance to
Two questions, really: Is there a standard/convention regarding the placement on configuration files? For
two questions: how do i compile a .java file that isn't on my username
So two questions here: If I use <input type=button onclick=validate()> then the enter key
I have two questions... Here is a really simple example script which causes an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.