ContentType.MediaType Proprietà

Definizione

Ottiene o imposta il valore del tipo di supporto incluso nell'intestazione Content-Type rappresentata da questa istanza.

public:
 property System::String ^ MediaType { System::String ^ get(); void set(System::String ^ value); };
public string MediaType { get; set; }
member this.MediaType : string with get, set
Public Property MediaType As String

Valore della proprietà

Classe String contenente il valore del tipo e sottotipo del supporto. Questo valore non include un punto e virgola (;) come separatore dopo il sottotipo.

Eccezioni

Il valore specificato per un'operazione set è null.

Il valore specificato per un'operazione di impostazione è Empty ("").

Il valore specificato per un'operazione di impostazione non può essere analizzato.

Esempio

Nell'esempio di codice seguente viene impostato il valore di questa proprietà.

static void CreateMessageInlineAttachment2( String^ server, String^ textMessage )
{
   
   // Create a message and set up the recipients.
   MailMessage^ message = gcnew MailMessage( L"jane@contoso.com",L"ben@contoso.com",L"A text message for you.",L"Message: " );
   
   // Attach the message string to this email message.
   Attachment^ data = gcnew Attachment( textMessage );
   
   // Send textMessage as part of the email body.
   message->Attachments->Add( data );
   ContentType^ content = data->ContentType;
   content->MediaType = MediaTypeNames::Text::Plain;
   
   //Send the message.
   // Include credentials if the server requires them.
   SmtpClient^ client = gcnew SmtpClient( server );
   client->Credentials = CredentialCache::DefaultNetworkCredentials;
   client->Send( message );
   data->~Attachment();
   client->~SmtpClient();
}
public static void CreateMessageInlineAttachment2(string server, string
textMessage)
{
    // Create a message and set up the recipients.
    MailMessage message = new MailMessage(
       "jane@contoso.com",
       "ben@contoso.com",
       "A text message for you.",
       "Message: ");

    // Attach the message string to this email message.
    Attachment data = new Attachment(textMessage);
    // Send textMessage as part of the email body.
    message.Attachments.Add(data);
    ContentType content = data.ContentType;
    content.MediaType = MediaTypeNames.Text.Plain;
    //Send the message.
    // Include credentials if the server requires them.
    SmtpClient client = new SmtpClient(server);
    client.Credentials = CredentialCache.DefaultNetworkCredentials;

    try
    {
        client.Send(message);
    }
    catch (Exception ex)
    {
        Console.WriteLine("Exception caught in CreateMessageInlineAttachment2: {0}",
            ex.ToString());
    }
    data.Dispose();
}

Commenti

Nell'esempio seguente di un'intestazione Content-Type il valore della MediaType proprietà è "application/x-myType".

content-type: application/x-myType; name=data.xyz

Impostare questa proprietà su null o String.Empty per rimuovere le informazioni sul nome dall'intestazione.

La sintassi dell'intestazione Content-Type è descritta nella sezione 5.1 RFC 2045. RFC 2046 fornisce informazioni dettagliate sui tipi di supporti MIME. Queste schede di rete sono disponibili in https://www.ietf.org.

Si applica a