MimePart constructor (String, ContentTransferEncoding, Stream, CachingMode)

The MimePart constructor creates a new MimePart object, gives it a specified Content-Type header, and sets the content.

Namespace:  Microsoft.Exchange.Data.Mime
Assembly:  Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)

Syntax

'Declaration
Public Sub New ( _
    contentType As String, _
    transferEncoding As ContentTransferEncoding, _
    contentStream As Stream, _
    cachingMode As CachingMode _
)
'Usage
Dim contentType As String
Dim transferEncoding As ContentTransferEncoding
Dim contentStream As Stream
Dim cachingMode As CachingMode

Dim instance As New MimePart(contentType, _
    transferEncoding, contentStream, _
    cachingMode)
public MimePart(
    string contentType,
    ContentTransferEncoding transferEncoding,
    Stream contentStream,
    CachingMode cachingMode
)

Parameters

  • contentType
    Type: System.String

    A string that contains the Content-Type header to use.

  • contentStream
    Type: System.IO.Stream

    A stream that contains Multipurpose Internet Mail Extensions (MIME) content to put in this header.

Remarks

The MimePart method applies cachingMode to contentStream when it is creating the new MimePart object.

See also

Reference

MimePart class

MimePart members

MimePart overload

Microsoft.Exchange.Data.Mime namespace