ContentDisposition.Inline プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
電子メールの添付データの配置タイプ (インラインまたは添付) を決定する 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
プロパティ値
true
添付ファイル内のコンテンツが電子メール本文の一部としてインラインで表示される場合。それ以外の場合は false
。
例
次のコード例では、このプロパティの値を設定する方法を示します。
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();
}
注釈
プロパティは Inline 、電子メール メッセージと共に送信される Content-Disposition ヘッダーの廃棄の種類を設定します。 廃棄の種類は、電子メールを表示するソフトウェアで使用して、電子メールの添付ファイルを表示する正しい方法を決定できます。 処理の種類が の DispositionTypeNames.Inline 添付ファイルは、通常、ユーザーが電子メールを開いたときに表示されます。 処理の種類が の DispositionTypeNames.Attachment 添付ファイルは、通常、ユーザーが添付ファイルを表すアイコンをクリックするなど、追加の操作を実行するまで開かされません。
Content-Disposition ヘッダーは、 で利用可能な RFC 2183 で https://www.ietf.org説明されています。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET