AttachmentBase Construtores

Definição

Cria a instância de um novo AttachmentBase.

Sobrecargas

AttachmentBase(Stream)

Cria a instância de um AttachmentBase com o Stream especificado.

AttachmentBase(String)

Cria a instância de um AttachmentBase com o nome de arquivo especificado.

AttachmentBase(Stream, ContentType)

Cria a instância de um AttachmentBase com o Stream e ContentType especificados.

AttachmentBase(Stream, String)

Cria a instância de um AttachmentBase com o Stream e o tipo de mídia especificados.

AttachmentBase(String, ContentType)

Cria a instância de um AttachmentBase com o nome de arquivo e tipo de conteúdo especificados.

AttachmentBase(String, String)

Cria a instância de um AttachmentBase com o nome de arquivo e tipo de mídia especificados.

AttachmentBase(Stream)

Origem:
Attachment.cs
Origem:
Attachment.cs
Origem:
Attachment.cs

Cria a instância de um AttachmentBase com o Stream especificado.

protected:
 AttachmentBase(System::IO::Stream ^ contentStream);
protected AttachmentBase (System.IO.Stream contentStream);
new System.Net.Mail.AttachmentBase : System.IO.Stream -> System.Net.Mail.AttachmentBase
Protected Sub New (contentStream As Stream)

Parâmetros

contentStream
Stream

Um fluxo contendo o conteúdo para este anexo.

Exceções

contentStream é null.

Aplica-se a

AttachmentBase(String)

Origem:
Attachment.cs
Origem:
Attachment.cs
Origem:
Attachment.cs

Cria a instância de um AttachmentBase com o nome de arquivo especificado.

protected:
 AttachmentBase(System::String ^ fileName);
protected AttachmentBase (string fileName);
new System.Net.Mail.AttachmentBase : string -> System.Net.Mail.AttachmentBase
Protected Sub New (fileName As String)

Parâmetros

fileName
String

O nome do arquivo que contém o conteúdo para este anexo.

Exceções

fileName é null.

Aplica-se a

AttachmentBase(Stream, ContentType)

Origem:
Attachment.cs
Origem:
Attachment.cs
Origem:
Attachment.cs

Cria a instância de um AttachmentBase com o Stream e ContentType especificados.

protected:
 AttachmentBase(System::IO::Stream ^ contentStream, System::Net::Mime::ContentType ^ contentType);
protected AttachmentBase (System.IO.Stream contentStream, System.Net.Mime.ContentType? contentType);
protected AttachmentBase (System.IO.Stream contentStream, System.Net.Mime.ContentType contentType);
new System.Net.Mail.AttachmentBase : System.IO.Stream * System.Net.Mime.ContentType -> System.Net.Mail.AttachmentBase
Protected Sub New (contentStream As Stream, contentType As ContentType)

Parâmetros

contentStream
Stream

Um fluxo contendo o conteúdo para este anexo.

contentType
ContentType

O tipo de conteúdo.

Exceções

contentStream é null.

contentType não é um valor válido.

Aplica-se a

AttachmentBase(Stream, String)

Origem:
Attachment.cs
Origem:
Attachment.cs
Origem:
Attachment.cs

Cria a instância de um AttachmentBase com o Stream e o tipo de mídia especificados.

protected:
 AttachmentBase(System::IO::Stream ^ contentStream, System::String ^ mediaType);
protected AttachmentBase (System.IO.Stream contentStream, string? mediaType);
protected AttachmentBase (System.IO.Stream contentStream, string mediaType);
new System.Net.Mail.AttachmentBase : System.IO.Stream * string -> System.Net.Mail.AttachmentBase
Protected Sub New (contentStream As Stream, mediaType As String)

Parâmetros

contentStream
Stream

Um fluxo contendo o conteúdo para este anexo.

mediaType
String

O tipo de mídia MIME do conteúdo.

Exceções

contentStream é null.

mediaType não é um valor válido.

Aplica-se a

AttachmentBase(String, ContentType)

Origem:
Attachment.cs
Origem:
Attachment.cs
Origem:
Attachment.cs

Cria a instância de um AttachmentBase com o nome de arquivo e tipo de conteúdo especificados.

protected:
 AttachmentBase(System::String ^ fileName, System::Net::Mime::ContentType ^ contentType);
protected AttachmentBase (string fileName, System.Net.Mime.ContentType? contentType);
protected AttachmentBase (string fileName, System.Net.Mime.ContentType contentType);
new System.Net.Mail.AttachmentBase : string * System.Net.Mime.ContentType -> System.Net.Mail.AttachmentBase
Protected Sub New (fileName As String, contentType As ContentType)

Parâmetros

fileName
String

O nome do arquivo que contém o conteúdo para este anexo.

contentType
ContentType

O tipo de conteúdo.

Exceções

fileName é null.

contentType não é um valor válido.

Aplica-se a

AttachmentBase(String, String)

Origem:
Attachment.cs
Origem:
Attachment.cs
Origem:
Attachment.cs

Cria a instância de um AttachmentBase com o nome de arquivo e tipo de mídia especificados.

protected:
 AttachmentBase(System::String ^ fileName, System::String ^ mediaType);
protected AttachmentBase (string fileName, string? mediaType);
protected AttachmentBase (string fileName, string mediaType);
new System.Net.Mail.AttachmentBase : string * string -> System.Net.Mail.AttachmentBase
Protected Sub New (fileName As String, mediaType As String)

Parâmetros

fileName
String

O nome do arquivo que contém o conteúdo para este anexo.

mediaType
String

O tipo de mídia MIME do conteúdo.

Exceções

fileName é null.

mediaType não é um valor válido.

Aplica-se a