Gets the content location of the MIME part.
A string containing the MIME part's content location taken from Content-Location header, or an empty string if Content-Location header is not set.
The value of this property is taken from Content-Location header of the message. It usually contains the URI (URL) of the resource contained in this MIME part.
For instance, if the header is Content-Location: http://www.afterlogic.com/images/top.gif, ContentLocation property will return http://www.afterlogic.com/images/top.gif value.
See Attachment.ContentLocation for more information regarding Content-Location.
This sample loads the message from .EML file and displays the location of each MIME part of the message.
[C#] // To use the code below, import MailBee namespaces at the top of your code. using MailBee; using MailBee.Mime; // The actual code (put it into a method of your class) // Load the message from file. MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); foreach (MimePart part in msg.MimePartTree.GetAllParts()) { Console.WriteLine(part.ContentLocation); }
[Visual Basic] ' To use the code below, import MailBee namespaces at the top of your code. Imports MailBee Imports MailBee.Mime ' The actual code (put it into a method of your class) ' Load the message from file. Dim msg As New MailMessage msg.LoadMessage("C:\Docs\TestMail.eml") For Each part As MimePart In msg.MimePartTree.GetAllParts() Console.WriteLine(part.ContentLocation) Next
MimePart Class | MailBee.Mime Namespace | ContentID