MessageParserConfigApply Method
Applies the current parsing options and re-parses the message.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void Apply()
Remarks

A mail message does not get parsed until any of its properties which requires parsing has been accessed. For instance, if you just received a message from the mail server, it does not get parsed as this point. You may set the required parsing options at this point and then access any of the properties or methods of this message which make it get parsed. No need to call Apply methods in this case.

However, you may need to call this method if the parsing settings have changed after the message has already been parsed (for instance, you accessed the property which made the message get parsed and from this property value you found out that you need to reparse the message with different setting). See ParseHeaderOnly topic for more information.

Examples
The example is available int MessageParserConfig topic.
See Also