Gets the inner message of this attachment if it is an attached message of "message/rfc822" content type.

Namespace:  Rebex.Mail
Assembly:  Rebex.Mail (in Rebex.Mail.dll) Version: 1.0.4086.0

Syntax

C#
public MailMessage ContentMessage { get; }
Visual Basic (Declaration)
Public ReadOnly Property ContentMessage As MailMessage
Visual C++
public:
property MailMessage^ ContentMessage {
	MailMessage^ get ();
}

Field Value

The inner message of this attachment; or null if not available.

Remarks

To set the content of this attachment, use one of SetContent(Stream, String) or SetContentFromFile(String) methods.

See Also