Read Gmail Inbox
I want to read my Gmail Inbox by using Google.GData.Client.dll . How do I accomplish this? I would like a sample program. I found GMailAtomFeed // Create the object and get the feed RC.Gmail.GmailAtomFeed gmailFeed = new RC.Gmail.GmailAtomFeed("username", "password"); gmailFeed.GetFeed(); // Access the feeds XmlDocument XmlDocument myXml = gmailFeed.FeedXml // Access the raw feed as a string string feedString = gmailFeed.RawFeed // Access the feed through the object string feedTitle = gmailFeed.Title; string feedTagline = gmailFeed.Message; DateTime feedModified = gmailFeed.Modified; //Get the