基本信息
源码名称:邮件接收系统 C#一个邮件收取客户端ImapX源码
源码大小:1.39M
文件格式:.rar
开发语言:C#
更新时间:2023-07-02
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
邮件接收系统 C#一个邮件收取客户端ImapX源码
邮件接收系统 C#一个邮件收取客户端ImapX源码,本源码包含一个imap类库和一个完整的imap客户端demo,支持ssl和tls连接。有界面,可直接运行。
文件清单
└── C#ImapX
├── imapx
│ ├── Attachment.cs
│ ├── Authentication
│ │ ├── ImapCredentials.cs
│ │ ├── OAuth2Credentials.cs
│ │ └── PlainCredentials.cs
│ ├── bin
│ │ └── Debug
│ │ ├── ImapX.dll
│ │ └── ImapX.pdb
│ ├── Capability.cs
│ ├── ClientBehavior.cs
│ ├── Collections
│ │ ├── CommonFolderCollection.cs
│ │ ├── FolderCollection.cs
│ │ ├── FolderFlagCollection.cs
│ │ ├── GMailMessageLabelCollection.cs
│ │ ├── GMailThreadCollection.cs
│ │ ├── ImapObjectCollection.cs
│ │ ├── MessageCollection.cs
│ │ └── MessageFlagCollection.cs
│ ├── Constants
│ │ ├── FolderStatusFields.cs
│ │ ├── ImapCommands.cs
│ │ ├── MessageHeader.cs
│ │ ├── MessageHeaderSets.cs
│ │ └── ResponseType.cs
│ ├── EncodingHelpers
│ │ ├── Base64.cs
│ │ ├── BodyDecoder.cs
│ │ ├── ImapUTF7.cs
│ │ └── StringDecoder.cs
│ ├── Enums
│ │ ├── BodyType.cs
│ │ ├── ContentTransferEncoding.cs
│ │ ├── FolderTreeBrowseMode.cs
│ │ ├── IdleState.cs
│ │ ├── MessageFetchMode.cs
│ │ ├── MessageFetchState.cs
│ │ ├── MessageImportance.cs
│ │ ├── MessageParseState.cs
│ │ └── MessageSensitivity.cs
│ ├── Envelope.cs
│ ├── Exceptions
│ │ ├── InvalidStateException.cs
│ │ ├── OperationFailedException.cs
│ │ └── ServerAlertException.cs
│ ├── Extensions
│ │ ├── DateTimeExtensions.cs
│ │ ├── EnumerableExtensions.cs
│ │ ├── EnumExtensions.cs
│ │ ├── MailMessageExtensions.cs
│ │ └── StringExtensions.cs
│ ├── Flags
│ │ ├── FolderFlags.cs
│ │ └── MessageFlags.cs
│ ├── Folder.cs
│ ├── GMailMessageThread.cs
│ ├── IdleEventArgs.cs
│ ├── ImapBase.cs
│ ├── ImapClient.cs
│ ├── ImapX.cd
│ ├── ImapX.csproj
│ ├── ImapX.snk
│ ├── ImapX.suo
│ ├── ImapX.WindowsPhone.csproj
│ ├── ImapX.WinRT.csproj
│ ├── MailAddress.cs
│ ├── MessageBody.cs
│ ├── MessageBuilder.cs
│ ├── MessageContent.cs
│ ├── Message.cs
│ ├── MessageUploader.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ImapX.csproj.FileListAbsolute.txt
│ │ ├── ImapX.csprojResolveAssemblyReference.cache
│ │ ├── ImapX.dll
│ │ ├── ImapX.pdb
│ │ └── TempPE
│ ├── packages.config
│ ├── Parsing
│ │ ├── BodyStructureParser.cs
│ │ ├── CommandProcessor.cs
│ │ ├── Expressions.cs
│ │ └── HeaderFieldParser.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── System
│ ├── Net
│ │ ├── Mail
│ │ │ ├── MailAddressCollection.cs
│ │ │ └── MailAddress.cs
│ │ ├── Mime
│ │ │ ├── ContentDisposition.cs
│ │ │ ├── ContentType.cs
│ │ │ ├── DispositionTypeNames.cs
│ │ │ ├── IEncodableStream.cs
│ │ │ ├── MailBnfHelper.cs
│ │ │ ├── MimeBasePart.cs
│ │ │ ├── SmtpDateTime.cs
│ │ │ └── TransferEncoding.cs
│ │ └── Sockets
│ │ ├── SocketError.cs
│ │ └── SocketException.cs
│ └── Security
│ └── Authentication
│ ├── AuthenticationException.cs
│ └── SslProtocols.cs
├── ImapX.Sample
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── ImapX.dll
│ │ ├── ImapX.pdb
│ │ ├── ImapX.Sample.exe
│ │ ├── ImapX.Sample.exe.config
│ │ ├── ImapX.Sample.pdb
│ │ ├── ImapX.Sample.vshost.exe
│ │ ├── ImapX.Sample.vshost.exe.config
│ │ ├── ImapX.Sample.vshost.exe.manifest
│ │ └── tmp
│ ├── FolderBox.cs
│ ├── FolderBox.Designer.cs
│ ├── FolderBox.resx
│ ├── FrmBodyStructure.cs
│ ├── FrmBodyStructure.Designer.cs
│ ├── FrmBodyStructure.resx
│ ├── FrmConnect.cs
│ ├── FrmConnect.Designer.cs
│ ├── FrmConnect.resx
│ ├── FrmConsole.cs
│ ├── FrmConsole.Designer.cs
│ ├── FrmConsole.resx
│ ├── FrmError.cs
│ ├── FrmError.Designer.cs
│ ├── FrmError.resx
│ ├── FrmMain.cs
│ ├── FrmMain.Designer.cs
│ ├── FrmMain.resx
│ ├── Google
│ │ ├── GoogleAccessToken.cs
│ │ ├── GoogleEmail.cs
│ │ ├── GoogleOAuth2Provider.cs
│ │ └── GoogleProfile.cs
│ ├── icon.ico
│ ├── ImapX.Sample.csproj
│ ├── ImapX.Sample.csproj.DotSettings
│ ├── ImapX.Sample.csproj.vspscc
│ ├── InputBox.cs
│ ├── InputBox.Designer.cs
│ ├── InputBox.resx
│ ├── JsonHelper.cs
│ ├── Native
│ │ ├── NativeMethods.cs
│ │ └── SHFILEINFO.cs
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ImapX.Sample.csproj.FileListAbsolute.txt
│ │ ├── ImapX.Sample.csproj.GenerateResource.Cache
│ │ ├── ImapX.Sample.csprojResolveAssemblyReference.cache
│ │ ├── ImapX.Sample.exe
│ │ ├── ImapX.Sample.FolderBox.resources
│ │ ├── ImapX.Sample.FrmConnect.resources
│ │ ├── ImapX.Sample.FrmConsole.resources
│ │ ├── ImapX.Sample.FrmError.resources
│ │ ├── ImapX.Sample.FrmMain.resources
│ │ ├── ImapX.Sample.InputBox.resources
│ │ ├── ImapX.Sample.pdb
│ │ ├── ImapX.Sample.Properties.Resources.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── archive.png
│ │ ├── attach.png
│ │ ├── empty_trash.png
│ │ ├── flag.png
│ │ ├── full_trash.png
│ │ ├── important.png
│ │ ├── inbox.png
│ │ ├── junk.png
│ │ ├── logo.png
│ │ ├── mails.png
│ │ ├── paper_plane.png
│ │ ├── pencil.png
│ │ └── sign-in-with-google.png
│ ├── ServerCallCompletedEventArgs.cs
│ └── StringExtensions.cs
├── ImapX.sln
├── ImapX.suo
└── ImapX.v12.suo
36 directories, 170 files
邮件接收系统 C#一个邮件收取客户端ImapX源码
邮件接收系统 C#一个邮件收取客户端ImapX源码,本源码包含一个imap类库和一个完整的imap客户端demo,支持ssl和tls连接。有界面,可直接运行。
文件清单
└── C#ImapX
├── imapx
│ ├── Attachment.cs
│ ├── Authentication
│ │ ├── ImapCredentials.cs
│ │ ├── OAuth2Credentials.cs
│ │ └── PlainCredentials.cs
│ ├── bin
│ │ └── Debug
│ │ ├── ImapX.dll
│ │ └── ImapX.pdb
│ ├── Capability.cs
│ ├── ClientBehavior.cs
│ ├── Collections
│ │ ├── CommonFolderCollection.cs
│ │ ├── FolderCollection.cs
│ │ ├── FolderFlagCollection.cs
│ │ ├── GMailMessageLabelCollection.cs
│ │ ├── GMailThreadCollection.cs
│ │ ├── ImapObjectCollection.cs
│ │ ├── MessageCollection.cs
│ │ └── MessageFlagCollection.cs
│ ├── Constants
│ │ ├── FolderStatusFields.cs
│ │ ├── ImapCommands.cs
│ │ ├── MessageHeader.cs
│ │ ├── MessageHeaderSets.cs
│ │ └── ResponseType.cs
│ ├── EncodingHelpers
│ │ ├── Base64.cs
│ │ ├── BodyDecoder.cs
│ │ ├── ImapUTF7.cs
│ │ └── StringDecoder.cs
│ ├── Enums
│ │ ├── BodyType.cs
│ │ ├── ContentTransferEncoding.cs
│ │ ├── FolderTreeBrowseMode.cs
│ │ ├── IdleState.cs
│ │ ├── MessageFetchMode.cs
│ │ ├── MessageFetchState.cs
│ │ ├── MessageImportance.cs
│ │ ├── MessageParseState.cs
│ │ └── MessageSensitivity.cs
│ ├── Envelope.cs
│ ├── Exceptions
│ │ ├── InvalidStateException.cs
│ │ ├── OperationFailedException.cs
│ │ └── ServerAlertException.cs
│ ├── Extensions
│ │ ├── DateTimeExtensions.cs
│ │ ├── EnumerableExtensions.cs
│ │ ├── EnumExtensions.cs
│ │ ├── MailMessageExtensions.cs
│ │ └── StringExtensions.cs
│ ├── Flags
│ │ ├── FolderFlags.cs
│ │ └── MessageFlags.cs
│ ├── Folder.cs
│ ├── GMailMessageThread.cs
│ ├── IdleEventArgs.cs
│ ├── ImapBase.cs
│ ├── ImapClient.cs
│ ├── ImapX.cd
│ ├── ImapX.csproj
│ ├── ImapX.snk
│ ├── ImapX.suo
│ ├── ImapX.WindowsPhone.csproj
│ ├── ImapX.WinRT.csproj
│ ├── MailAddress.cs
│ ├── MessageBody.cs
│ ├── MessageBuilder.cs
│ ├── MessageContent.cs
│ ├── Message.cs
│ ├── MessageUploader.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ImapX.csproj.FileListAbsolute.txt
│ │ ├── ImapX.csprojResolveAssemblyReference.cache
│ │ ├── ImapX.dll
│ │ ├── ImapX.pdb
│ │ └── TempPE
│ ├── packages.config
│ ├── Parsing
│ │ ├── BodyStructureParser.cs
│ │ ├── CommandProcessor.cs
│ │ ├── Expressions.cs
│ │ └── HeaderFieldParser.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── System
│ ├── Net
│ │ │ ├── MailAddressCollection.cs
│ │ │ └── MailAddress.cs
│ │ ├── Mime
│ │ │ ├── ContentDisposition.cs
│ │ │ ├── ContentType.cs
│ │ │ ├── DispositionTypeNames.cs
│ │ │ ├── IEncodableStream.cs
│ │ │ ├── MailBnfHelper.cs
│ │ │ ├── MimeBasePart.cs
│ │ │ ├── SmtpDateTime.cs
│ │ │ └── TransferEncoding.cs
│ │ └── Sockets
│ │ ├── SocketError.cs
│ │ └── SocketException.cs
│ └── Security
│ └── Authentication
│ ├── AuthenticationException.cs
│ └── SslProtocols.cs
├── ImapX.Sample
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── ImapX.dll
│ │ ├── ImapX.pdb
│ │ ├── ImapX.Sample.exe
│ │ ├── ImapX.Sample.exe.config
│ │ ├── ImapX.Sample.pdb
│ │ ├── ImapX.Sample.vshost.exe
│ │ ├── ImapX.Sample.vshost.exe.config
│ │ ├── ImapX.Sample.vshost.exe.manifest
│ │ └── tmp
│ ├── FolderBox.cs
│ ├── FolderBox.Designer.cs
│ ├── FolderBox.resx
│ ├── FrmBodyStructure.cs
│ ├── FrmBodyStructure.Designer.cs
│ ├── FrmBodyStructure.resx
│ ├── FrmConnect.cs
│ ├── FrmConnect.Designer.cs
│ ├── FrmConnect.resx
│ ├── FrmConsole.cs
│ ├── FrmConsole.Designer.cs
│ ├── FrmConsole.resx
│ ├── FrmError.cs
│ ├── FrmError.Designer.cs
│ ├── FrmError.resx
│ ├── FrmMain.cs
│ ├── FrmMain.Designer.cs
│ ├── FrmMain.resx
│ │ ├── GoogleAccessToken.cs
│ │ ├── GoogleEmail.cs
│ │ ├── GoogleOAuth2Provider.cs
│ │ └── GoogleProfile.cs
│ ├── icon.ico
│ ├── ImapX.Sample.csproj
│ ├── ImapX.Sample.csproj.DotSettings
│ ├── ImapX.Sample.csproj.vspscc
│ ├── InputBox.cs
│ ├── InputBox.Designer.cs
│ ├── InputBox.resx
│ ├── JsonHelper.cs
│ ├── Native
│ │ ├── NativeMethods.cs
│ │ └── SHFILEINFO.cs
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ImapX.Sample.csproj.FileListAbsolute.txt
│ │ ├── ImapX.Sample.csproj.GenerateResource.Cache
│ │ ├── ImapX.Sample.csprojResolveAssemblyReference.cache
│ │ ├── ImapX.Sample.exe
│ │ ├── ImapX.Sample.FolderBox.resources
│ │ ├── ImapX.Sample.FrmConnect.resources
│ │ ├── ImapX.Sample.FrmConsole.resources
│ │ ├── ImapX.Sample.FrmError.resources
│ │ ├── ImapX.Sample.FrmMain.resources
│ │ ├── ImapX.Sample.InputBox.resources
│ │ ├── ImapX.Sample.pdb
│ │ ├── ImapX.Sample.Properties.Resources.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── archive.png
│ │ ├── attach.png
│ │ ├── empty_trash.png
│ │ ├── flag.png
│ │ ├── full_trash.png
│ │ ├── important.png
│ │ ├── inbox.png
│ │ ├── junk.png
│ │ ├── logo.png
│ │ ├── mails.png
│ │ ├── paper_plane.png
│ │ ├── pencil.png
│ │ └── sign-in-with-google.png
│ ├── ServerCallCompletedEventArgs.cs
│ └── StringExtensions.cs
├── ImapX.sln
├── ImapX.suo
└── ImapX.v12.suo
36 directories, 170 files