Read Gmail Inbox

后端 未结 2 655
迷失自我
迷失自我 2020-12-09 23:54

I want to read my Gmail Inbox by using Google.GData.Client.dll. How do I accomplish this? I would like a sample program.

2条回答
  •  难免孤独
    2020-12-10 00:20

    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 entries 
       for(int i = 0; i < gmailFeed.FeedEntries.Count; i++) { 
          entryAuthorName = gmailFeed.FeedEntries[i].FromName; 
          entryAuthorEmail = gmailFeed.FeedEntries[i].FromEmail; 
          entryTitle = gmailFeed.FeedEntries[i].Subject; 
          entrySummary = gmailFeed.FeedEntries[i].Summary; 
          entryIssuedDate = gmailFeed.FeedEntries[i].Received; 
          entryId = gmailFeed.FeedEntries[i].Id; 
       }
    

    also you should look

    http://code.msdn.microsoft.com/CSharpGmail

    http://weblogs.asp.net/satalajmore/archive/2007/12/19/asp-net-read-email.aspx

提交回复
热议问题