MimePart Constructor (String, String, Stream, CachingMode)

The MimePart method creates a new MimePart object, gives it a specified content type, 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 String, _
    contentStream As Stream, _
    cachingMode As CachingMode _
)
'Usage
Dim contentType As String
Dim transferEncoding As String
Dim contentStream As Stream
Dim cachingMode As CachingMode

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

Parameters

  • contentType
    Type: System.String
    A string that contains the Content-Type header to use.
  • transferEncoding
    Type: System.String
    A string that describes the content transfer encoding to apply to contentType and contentStream.
  • contentStream
    Type: System.IO.Stream
    A stream that contains Multipurpose Internet Mail Extensions (MIME) content to put in this header.