ContentType 类

定义

表示 MIME 协议内容类型标头。

public ref class ContentType
public class ContentType
type ContentType = class
Public Class ContentType
继承
ContentType

示例

下面的代码示例发送带有附件的电子邮件,并显示 ContentDisposition 附件的属性。

public static void CreateMessageWithAttachment(string server)
{
    // Specify the file to be attached and sent.
    // This example assumes that a file named Data.xls exists in the
    // current working directory.
    string file = "data.xls";
    // Create a message and set up the recipients.
    MailMessage message = new MailMessage(
        "jane@contoso.com",
        "ben@contoso.com",
        "Quarterly data report.",
        "See the attached spreadsheet.");

    // Create  the file attachment for this email message.
    Attachment data = new Attachment(file, MediaTypeNames.Application.Octet);
    // Add time stamp information for the file.
    ContentDisposition disposition = data.ContentDisposition;
    disposition.CreationDate = System.IO.File.GetCreationTime(file);
    disposition.ModificationDate = System.IO.File.GetLastWriteTime(file);
    disposition.ReadDate = System.IO.File.GetLastAccessTime(file);
    // Add the file attachment to this email message.
    message.Attachments.Add(data);

    //Send the message.
    SmtpClient client = new SmtpClient(server);
    // Add credentials if the SMTP server requires them.
    client.Credentials = CredentialCache.DefaultNetworkCredentials;

    try
    {
        client.Send(message);
    }
    catch (Exception ex)
    {
        Console.WriteLine("Exception caught in CreateMessageWithAttachment(): {0}",
            ex.ToString());
    }
    // Display the values in the ContentDisposition for the attachment.
    ContentDisposition cd = data.ContentDisposition;
    Console.WriteLine("Content disposition");
    Console.WriteLine(cd.ToString());
    Console.WriteLine("File {0}", cd.FileName);
    Console.WriteLine("Size {0}", cd.Size);
    Console.WriteLine("Creation {0}", cd.CreationDate);
    Console.WriteLine("Modification {0}", cd.ModificationDate);
    Console.WriteLine("Read {0}", cd.ReadDate);
    Console.WriteLine("Inline {0}", cd.Inline);
    Console.WriteLine("Parameters: {0}", cd.Parameters.Count);
    foreach (DictionaryEntry d in cd.Parameters)
    {
        Console.WriteLine("{0} = {1}", d.Key, d.Value);
    }
    data.Dispose();
}

注解

类中 ContentType 的信息用于描述电子邮件中包含的数据,以便显示电子邮件的软件能够以适当的方式呈现内容。 ContentType 与类一起使用 Attachment 以指定附件中内容类型。

CONTENT-Type 标头的语法在 RFC 2045 第 5.1 节中介绍。 RFC 2046 提供有关 MIME 媒体类型及其参数的详细信息。 可在以下位置 https://www.ietf.org获取这些 RFC。

构造函数

名称 说明
ContentType()

初始化类的新默认实例 ContentType

ContentType(String)

使用指定的字符串初始化类的新实例 ContentType

属性

名称 说明
Boundary

获取或设置此实例所表示的 Content-Type 标头中包含的边界参数的值。

CharSet

获取或设置此实例所表示的 Content-Type 标头中包含的字符集参数的值。

MediaType

获取或设置此实例所表示的 Content-Type 标头中包含的媒体类型值。

Name

获取或设置此实例所表示的 Content-Type 标头中包含的 name 参数的值。

Parameters

获取包含此实例所表示的 Content-Type 标头中包含的参数的字典。

方法

名称 说明
Equals(Object)

确定指定 ContentType 对象的内容类型标头是否等于此对象的内容类型标头。

GetHashCode()

确定指定 ContentType 对象的哈希代码。

GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
ToString()

返回此 ContentType 对象的字符串表示形式。

适用于

另请参阅