共用方式為


Attachment.CreateAttachmentFromString 方法

定義

從字串建立附件。

多載

CreateAttachmentFromString(String, ContentType)

使用指定字串中的內容,以及指定的 ContentType,建立郵件附件。

CreateAttachmentFromString(String, String)

使用指定字串中的內容,以及指定的 MIME 內容類型名稱,建立郵件附件。

CreateAttachmentFromString(String, String, Encoding, String)

使用指定字串中的內容、指定的 MIME 內容類型名稱、字元編碼方式,以及附件的 MIME 標頭資訊,建立郵件附件。

CreateAttachmentFromString(String, ContentType)

來源:
Attachment.cs
來源:
Attachment.cs
來源:
Attachment.cs

使用指定字串中的內容,以及指定的 ContentType,建立郵件附件。

public:
 static System::Net::Mail::Attachment ^ CreateAttachmentFromString(System::String ^ content, System::Net::Mime::ContentType ^ contentType);
public static System.Net.Mail.Attachment CreateAttachmentFromString (string content, System.Net.Mime.ContentType contentType);
static member CreateAttachmentFromString : string * System.Net.Mime.ContentType -> System.Net.Mail.Attachment
Public Shared Function CreateAttachmentFromString (content As String, contentType As ContentType) As Attachment

參數

content
String

String,包含這個附件的內容。

contentType
ContentType

ContentType 物件,表示要使用的多用途網際網路郵件交換 (Multipurpose Internet Mail Exchange,MIME) 通訊協定內容類型標頭。

傳回

Attachment 類型的物件。

適用於

CreateAttachmentFromString(String, String)

來源:
Attachment.cs
來源:
Attachment.cs
來源:
Attachment.cs

使用指定字串中的內容,以及指定的 MIME 內容類型名稱,建立郵件附件。

public:
 static System::Net::Mail::Attachment ^ CreateAttachmentFromString(System::String ^ content, System::String ^ name);
public static System.Net.Mail.Attachment CreateAttachmentFromString (string content, string? name);
public static System.Net.Mail.Attachment CreateAttachmentFromString (string content, string name);
static member CreateAttachmentFromString : string * string -> System.Net.Mail.Attachment
Public Shared Function CreateAttachmentFromString (content As String, name As String) As Attachment

參數

content
String

String,包含這個附件的內容。

name
String

與這個附件關聯之內容類型中的 MIME 內容類型名稱值。

傳回

Attachment 類型的物件。

備註

如果內容是 ASCII 格式,則字元編碼會設定為 ASCII。 針對所有其他格式,字元編碼會設定為 utf-8。 默認媒體類型為純文字。

如果內容不是 ASCII 格式,且編碼為 Null,則會使用 utf-8 編碼。

適用於

CreateAttachmentFromString(String, String, Encoding, String)

來源:
Attachment.cs
來源:
Attachment.cs
來源:
Attachment.cs

使用指定字串中的內容、指定的 MIME 內容類型名稱、字元編碼方式,以及附件的 MIME 標頭資訊,建立郵件附件。

public:
 static System::Net::Mail::Attachment ^ CreateAttachmentFromString(System::String ^ content, System::String ^ name, System::Text::Encoding ^ contentEncoding, System::String ^ mediaType);
public static System.Net.Mail.Attachment CreateAttachmentFromString (string content, string? name, System.Text.Encoding? contentEncoding, string? mediaType);
public static System.Net.Mail.Attachment CreateAttachmentFromString (string content, string name, System.Text.Encoding contentEncoding, string mediaType);
static member CreateAttachmentFromString : string * string * System.Text.Encoding * string -> System.Net.Mail.Attachment
Public Shared Function CreateAttachmentFromString (content As String, name As String, contentEncoding As Encoding, mediaType As String) As Attachment

參數

content
String

String,包含這個附件的內容。

name
String

與這個附件關聯之內容類型中的 MIME 內容類型名稱值。

contentEncoding
Encoding

Encoding。 這個值可以是 null

mediaType
String

String,包含這個附件的 MIME 內容標頭資訊。 這個值可以是 null

傳回

Attachment 類型的物件。

適用於