Click or drag to resize
MimeKit

BodyPartMultipart(ContentType, String, BodyPartCollection) Constructor

Initializes a new instance of the BodyPartMultipart class.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.17.0
Syntax
C#
public BodyPartMultipart(
	ContentType contentType,
	string partSpecifier,
	BodyPartCollection bodyParts
)

Parameters

contentType  ContentType
The content type.
partSpecifier  String
The part specifier.
bodyParts  BodyPartCollection
The child body parts of the multipart.
Exceptions
ExceptionCondition
ArgumentNullException

contentType is .

-or-

partSpecifier is .

-or-

bodyParts is .

Remarks
Creates a new BodyPartMultipart.
See Also