Constructs a new
CopyC#
Attachment
instance from an existing MIME message.

Namespace: Jscape.Email
Assembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0

Syntax

C#
public Attachment(
	MimeMessage message
)
Visual Basic
Public Sub New ( _
	message As MimeMessage _
)
Visual C++
public:
Attachment(
	MimeMessage^ message
)

Parameters

message
Type: Jscape.Email..::..MimeMessage
The MimeMessage.

Examples

To construct an attachment, create an instance and provide the required mime message.
CopyMime Attachment
Attachment att = new Attachment(message);

CopyMime Attachment
Attachment att = new Attachment(message)

See Also