• 大小: 0.07M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-27
  • 语言: C#
  • 标签: POP3  实例  

资源简介

通常情况下,该实例已经够用了                             

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace Example
{
  class Program
  {
    static void Main(string[] args)
    {
      /*
       * WARNING. Be sure to include e-mail server an existing username and password!
       */
      // Pop3Lib.Client myPop3 = new Pop3Lib.Client(“pop.gmail.com“ “user name“ “password“);
      Pop3Lib.Client myPop3 = new Pop3Lib.Client(“pop3 host“ “user name“ “password“);

      Pop3Lib.MailItem m;
      while (myPop3.NextMail(out m))
      {
        Console.Write(“New message from {0}: {1}“ m.From m.Subject);
        Console.WriteLine(“Are you want remove this message (y/n)?“);
        if (Console.ReadLine().ToLower().StartsWith(“y“))
        {
          // mark for remove
          myPop3.Delete();
          Console.WriteLine(“Mail is marked for remove.“);
        }
      }

      myPop3.Close();
      Console.ReadKey();
    }
  }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         127  2011-08-27 17:22  Aleksey Nemiro\Facebook.url
     文件         135  2011-08-27 17:21  Aleksey Nemiro\Google+.url
     文件         134  2011-08-27 17:20  Aleksey Nemiro\Kbyte.Ru.url
     文件         124  2011-08-27 17:21  Aleksey Nemiro\Twitter.url
     文件         130  2011-08-27 17:21  Aleksey Nemiro\YouTube.url
     文件         123  2011-08-27 17:22  Aleksey Nemiro\倞鉅?url
     目录           0  2011-09-28 16:59  Example\bin\
     目录           0  2011-09-28 16:59  Example\bin\Release\
     文件        5632  2011-09-28 16:46  Example\bin\Release\Example.exe
     文件       17920  2011-09-28 16:46  Example\bin\Release\Pop3Lib.dll
     文件        6967  2011-09-28 16:46  Example\bin\Release\Pop3Lib.xml
     文件        2644  2011-08-27 17:11  Example\Example.csproj
     文件         997  2011-09-28 16:43  Example\Program.cs
     目录           0  2011-09-28 15:56  Example\Properties\
     文件        2057  2011-09-28 16:05  Example\Properties\AssemblyInfo.cs
     目录           0  2011-09-28 16:59  ExampleVB\bin\
     目录           0  2011-09-28 17:00  ExampleVB\bin\Release\
     文件       12288  2011-09-28 16:46  ExampleVB\bin\Release\ExampleVB.exe
     文件       17920  2011-09-28 16:46  ExampleVB\bin\Release\Pop3Lib.dll
     文件        6967  2011-09-28 16:46  ExampleVB\bin\Release\Pop3Lib.xml
     文件        4882  2011-08-27 17:04  ExampleVB\ExampleVB.vbproj
     文件        1081  2011-09-28 16:46  ExampleVB\Module1.vb
     目录           0  2011-09-28 15:56  ExampleVB\My Project\
     文件         439  2011-08-27 16:56  ExampleVB\My Project\Application.Designer.vb
     文件         481  2011-08-27 16:56  ExampleVB\My Project\Application.myapp
     文件        1676  2011-09-28 16:05  ExampleVB\My Project\AssemblyInfo.vb
     文件        2778  2011-08-27 16:56  ExampleVB\My Project\Resources.Designer.vb
     文件        5612  2011-08-27 16:56  ExampleVB\My Project\Resources.resx
     文件        2995  2011-08-27 16:56  ExampleVB\My Project\Settings.Designer.vb
     文件         279  2011-08-27 16:56  ExampleVB\My Project\Settings.settings
     目录           0  2011-09-28 15:56  Pop3Lib\bin\
............此处省略22个文件信息

评论

共有 条评论