AttachmentBase Costruttori
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un'istanza di un nuovo oggetto AttachmentBase.
AttachmentBase(Stream) |
Crea un'istanza di una classe AttachmentBase con la classe Stream specificata. |
AttachmentBase(String) |
Crea un'istanza di una classe AttachmentBase con il nome di file specificato. |
AttachmentBase(Stream, ContentType) |
Crea un'istanza di una classe AttachmentBase con le classi Stream e ContentType specificate. |
AttachmentBase(Stream, String) |
Crea un'istanza di una classe AttachmentBase con la classe Stream e il tipo di supporto specificati. |
AttachmentBase(String, ContentType) |
Crea un'istanza di una classe AttachmentBase con il nome di file e il tipo di contenuto specificati. |
AttachmentBase(String, String) |
Crea un'istanza di una classe AttachmentBase con il nome di file e il tipo di supporto specificati. |
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
Crea un'istanza di una classe AttachmentBase con la classe Stream specificata.
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)
Parametri
- contentStream
- Stream
Flusso che include il contenuto di questo allegato.
Eccezioni
contentStream
è null
.
Si applica a
.NET 9 e altre versioni
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
Crea un'istanza di una classe AttachmentBase con il nome di file specificato.
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)
Parametri
- fileName
- String
Nome file che include il contenuto di questo allegato.
Eccezioni
fileName
è null
.
Si applica a
.NET 9 e altre versioni
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
Crea un'istanza di una classe AttachmentBase con le classi Stream e ContentType specificate.
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)
Parametri
- contentStream
- Stream
Flusso che include il contenuto di questo allegato.
- contentType
- ContentType
Tipo del contenuto.
Eccezioni
contentStream
è null
.
contentType
non è un valore valido.
Si applica a
.NET 9 e altre versioni
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
Crea un'istanza di una classe AttachmentBase con la classe Stream e il tipo di supporto specificati.
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)
Parametri
- contentStream
- Stream
Flusso che include il contenuto di questo allegato.
- mediaType
- String
Tipo di supporto MIME del contenuto.
Eccezioni
contentStream
è null
.
mediaType
non è un valore valido.
Si applica a
.NET 9 e altre versioni
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
Crea un'istanza di una classe AttachmentBase con il nome di file e il tipo di contenuto specificati.
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)
Parametri
- fileName
- String
Nome file che include il contenuto di questo allegato.
- contentType
- ContentType
Tipo del contenuto.
Eccezioni
fileName
è null
.
contentType
non è un valore valido.
Si applica a
.NET 9 e altre versioni
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
- Origine:
- Attachment.cs
Crea un'istanza di una classe AttachmentBase con il nome di file e il tipo di supporto specificati.
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)
Parametri
- fileName
- String
Nome file che include il contenuto di questo allegato.
- mediaType
- String
Tipo di supporto MIME del contenuto.
Eccezioni
fileName
è null
.
mediaType
non è un valore valido.
Si applica a
.NET 9 e altre versioni
Prodotto | Versioni |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
Feedback su .NET
.NET è un progetto di open source. Selezionare un collegamento per fornire feedback: