Sign In  Sign Up Live-Chat
Collapse/expand the left pane
Are you looking for an evaluation version of a product?
If so you can download any of the below versions for testing. The component will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the component to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
NOTE:  If you experience errors like ’Internet explorer cannot display the web page’ is shown when you try to download a file, make sure your networking policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.

Aspose.Network for .NET v3.8.0.0

File Details
Downloads: 233 File Size: 3.7MB
Posted By: iret Views: 719
Date Added: Wed, Jan 23 2008

Aspose.Network for .NET v3.8.0.0 has been released. Aspose.Network is a complete solution for network programming on .NET frameworks.

This version is a major release, including SSL support for IMAP and POP3, bug fixes and many other improvements.

New Features

  • SSL on POP3 Protocol.
  • Implicit / Explicit security mode for SSL POP3
  • SSL on IMAP Protocol
  • Implicit / Explicit security mode for SSL IMAP
  • Updated Help document and code samples.

          Aspose.Network now supports using Secure Sockets Layer (SSL) to encrypt the connection (POP3/IMAP). With a few lines of code you can easily access your gmail account with Aspose.Network. Following is the sample to connect to your gmail account in C# using Aspose.Network.ImapClient.

          [C# Sample]

        //create imap client with specified server, username and password.
        ImapClient client = new ImapClient("imap.gmail.com", 993, "youraccount@google.com", "password");
        client.EnableSsl = true;
        client.SecurityMode = ImapSslSecurityMode.Implicit;
        //connect and login to the imap server
        client.Connect(true);
        //select the inbox as the current working folder
        client.SelectFolder("inbox");
        //save the message
        client.SaveMessage(1, "file.eml");
 Bug Fixes

  • NETWORK-4331 MailMessage.Save will throw exceptions for some outlook message files.
  • NETWORK-4332 MailMessage.Load will crash for invalid email address contained in the Outlook message files, like ';'.
  • NETWORK-4333 EmailVerify cannot reuse socket.
  • NETWORK-4334 SmtpClient need to use DNS lookup to identify the host name. 
  • NETWORK-4335 EmailVerify need to cache the MX records properly for performance.

HowTo Download

Comments
No comments exist for this file.