ContentDisposition.Inline Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
E-posta eki için bırakma türünü (Satır içi veya Ek) belirleyen bir değer alır veya ayarlar Boolean .
public:
property bool Inline { bool get(); void set(bool value); };
public bool Inline { get; set; }
member this.Inline : bool with get, set
Public Property Inline As Boolean
Özellik Değeri
true
ekteki içerik, e-posta gövdesinin bir parçası olarak satır içi olarak sunuluyorsa; aksi takdirde , false
.
Örnekler
Aşağıdaki kod örneği, bu özelliğin değerinin nasıl ayarlandığını gösterir.
static void CreateMessageInlineAttachment( 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"An inline text message for you.",L"Message: " );
// Attach the message string to this email message.
Attachment^ data = gcnew Attachment( textMessage,MediaTypeNames::Text::Plain );
// Send textMessage as part of the email body.
message->Attachments->Add( data );
ContentDisposition^ disposition = data->ContentDisposition;
disposition->Inline = true;
//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 CreateMessageInlineAttachment(string server, string
textMessage)
{
// Create a message and set up the recipients.
MailMessage message = new MailMessage(
"jane@contoso.com",
"ben@contoso.com",
"An inline text message for you.",
"Message: ");
// Attach the message string to this email message.
Attachment data = new Attachment(textMessage, MediaTypeNames.Text.Plain);
// Send textMessage as part of the email body.
message.Attachments.Add(data);
ContentDisposition disposition = data.ContentDisposition;
disposition.Inline = true;
//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 CreateMessageInlineAttachment: {0}",
ex.ToString());
}
data.Dispose();
}
Açıklamalar
özelliği, Inline e-posta iletisiyle birlikte gönderilen Content-Disposition üst bilgisindeki değerlendirme türünü ayarlar. Değerlendirme türü, e-posta eklerini sunmanın doğru yolunu belirlemek için e-postayı görüntüleyen yazılım tarafından kullanılabilir. Bırakma türüne DispositionTypeNames.Inline sahip ekler genellikle kullanıcı e-postayı açtığında görüntülenir. Bir bırakma türüne DispositionTypeNames.Attachment sahip ekler, kullanıcı eki temsil eden bir simgeye tıklama gibi bazı ek eylemler gerçekleştirene kadar genellikle açılmaz.
Content-Disposition üst bilgisi, adresinde bulunan RFC 2183'te https://www.ietf.orgaçıklanmıştır.