AlternateView Class

Definition

Represents the format to view an email message.

public ref class AlternateView : System::Net::Mail::AttachmentBase
public class AlternateView : System.Net.Mail.AttachmentBase
type AlternateView = class
    inherit AttachmentBase
Public Class AlternateView
Inherits AttachmentBase
Inheritance
AlternateView

Remarks

Use the AlternateView class to specify copies of an email message in different formats. For example, if you send a message in HTML, you might also want provide a plain text version in case some of the recipients use email readers that cannot display HTML content.

This class has two properties LinkedResources and BaseUri that are used to resolve URLs within the content of the email. LinkedResources is a collection of LinkedResource objects. When rendered, URLs within the email's content are first matched against the URLs in the ContentLink of each LinkedResource object in the LinkedResources collection, and resolved. BaseUri is used by the mail reader to resolve relative URLs within the body, and also to resolve relative ContentLink URLs, in the LinkedResources collection.

Constructors

AlternateView(Stream)

Initializes a new instance of AlternateView with the specified Stream.

AlternateView(Stream, ContentType)

Initializes a new instance of AlternateView with the specified Stream and ContentType.

AlternateView(Stream, String)

Initializes a new instance of AlternateView with the specified Stream and media type.

AlternateView(String)

Initializes a new instance of AlternateView with the specified file name.

AlternateView(String, ContentType)

Initializes a new instance of AlternateView with the specified file name and content type.

AlternateView(String, String)

Initializes a new instance of AlternateView with the specified file name and media type.

Properties

BaseUri

Gets or sets the base URI to use for resolving relative URIs in the AlternateView.

ContentId

Gets or sets the MIME content ID for this attachment.

(Inherited from AttachmentBase)
ContentStream

Gets the content stream of this attachment.

(Inherited from AttachmentBase)
ContentType

Gets the content type of this attachment.

(Inherited from AttachmentBase)
LinkedResources

Gets the set of embedded resources referred to by this attachment.

TransferEncoding

Gets or sets the encoding of this attachment.

(Inherited from AttachmentBase)

Methods

CreateAlternateViewFromString(String)

Creates a AlternateView of an email message using the content specified in a String.

CreateAlternateViewFromString(String, ContentType)

Creates an AlternateView of an email message using the content specified in a String and the specified MIME media type of the content.

CreateAlternateViewFromString(String, Encoding, String)

Creates an AlternateView of an email message using the content specified in a String, the specified text encoding, and MIME media type of the content.

Dispose()

Releases the resources used by the AttachmentBase.

(Inherited from AttachmentBase)
Dispose(Boolean)

Releases the unmanaged resources used by the AlternateView and optionally releases the managed resources.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to