Udostępnij za pośrednictwem


Attachment.CreateAttachmentFromString Metoda

Definicja

Tworzy załącznik na podstawie ciągu.

Przeciążenia

CreateAttachmentFromString(String, ContentType)

Tworzy załącznik wiadomości e-mail przy użyciu zawartości z określonego ciągu i określonego ContentType.

CreateAttachmentFromString(String, String)

Tworzy załącznik poczty przy użyciu zawartości z określonego ciągu i określoną nazwę typu zawartości MIME.

CreateAttachmentFromString(String, String, Encoding, String)

Tworzy załącznik poczty przy użyciu zawartości z określonego ciągu, określonej nazwy typu zawartości MIME, kodowania znaków i informacji nagłówka MIME dla załącznika.

CreateAttachmentFromString(String, ContentType)

Źródło:
Attachment.cs
Źródło:
Attachment.cs
Źródło:
Attachment.cs

Tworzy załącznik wiadomości e-mail przy użyciu zawartości z określonego ciągu i określonego 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

Parametry

content
String

Element String zawierający zawartość tego załącznika.

contentType
ContentType

Obiekt ContentType reprezentujący nagłówek Multipurpose Internet Mail Exchange (MIME) protokołu Content-Type, który ma być używany.

Zwraca

Obiekt typu Attachment.

Dotyczy

CreateAttachmentFromString(String, String)

Źródło:
Attachment.cs
Źródło:
Attachment.cs
Źródło:
Attachment.cs

Tworzy załącznik poczty przy użyciu zawartości z określonego ciągu i określoną nazwę typu zawartości 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

Parametry

content
String

Element String zawierający zawartość tego załącznika.

name
String

Wartość nazwy typu zawartości MIME w typie zawartości skojarzonym z tym załącznikiem.

Zwraca

Obiekt typu Attachment.

Uwagi

Jeśli zawartość jest w formacie ASCII, kodowanie znaków jest ustawione na ASCII. W przypadku wszystkich innych formatów kodowanie znaków jest ustawione na wartość utf-8. Domyślnym typem nośnika jest zwykły tekst.

Jeśli zawartość nie jest w formacie ASCII, a kodowanie ma wartość null, używane jest kodowanie utf-8.

Dotyczy

CreateAttachmentFromString(String, String, Encoding, String)

Źródło:
Attachment.cs
Źródło:
Attachment.cs
Źródło:
Attachment.cs

Tworzy załącznik poczty przy użyciu zawartości z określonego ciągu, określonej nazwy typu zawartości MIME, kodowania znaków i informacji nagłówka MIME dla załącznika.

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

Parametry

content
String

Element String zawierający zawartość tego załącznika.

name
String

Wartość nazwy typu zawartości MIME w typie zawartości skojarzonym z tym załącznikiem.

contentEncoding
Encoding

An Encoding. Ta wartość może mieć wartość null.

mediaType
String

Element String zawierający informacje o nagłówku zawartości MIME dla tego załącznika. Ta wartość może mieć wartość null.

Zwraca

Obiekt typu Attachment.

Dotyczy