MailMessage.Attachments プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
メッセージと共に送信される添付ファイルのコレクションを指定します。 推奨する代替 : System.Net.Mail
public:
property System::Collections::IList ^ Attachments { System::Collections::IList ^ get(); };
public System.Collections.IList Attachments { get; }
member this.Attachments : System.Collections.IList
Public ReadOnly Property Attachments As IList
プロパティ値
IList オブジェクトの MailAttachment コレクション。
例
MailMessage MyMessage = new MailMessage();
MyMessage.Attachments.Add(new MailAttachment(fileName1));
MyMessage.Attachments.Add(new MailAttachment(fileName2, MailEncoding.UUEncode));
Dim MyMessage As MailMessage = new MailMessage()
MyMessage.Attachments.Add(New MailAttachment(fileName1))
MyMessage.Attachments.Add(New MailAttachment(fileName2, MailEncoding.UUEncode))
注釈
の呼び出しによって、メール メッセージに新しい添付ファイルを Message.Attachments.Add(MyMailMessage)
追加できます。 使用方法のSmtpMail例を参照してくださいSend。