MailAttachment 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
MailAttachment 클래스의 새 인스턴스를 초기화합니다. 권장되는 대체 항목: System.Net.Mail.
오버로드
MailAttachment(String) |
첨부 파일에 지정된 파일 이름을 사용하여 MailAttachment 클래스의 새 인스턴스를 초기화합니다. 기본적으로 Encoding 속성은 UUEncode로 설정합니다. 권장되는 대체 항목: System.Net.Mail. |
MailAttachment(String, MailEncoding) |
첨부 파일에 지정된 파일 이름 및 인코딩 형식을 사용하여 MailAttachment 클래스의 새 인스턴스를 초기화합니다. 권장되는 대체 항목: System.Net.Mail. |
MailAttachment(String)
첨부 파일에 지정된 파일 이름을 사용하여 MailAttachment 클래스의 새 인스턴스를 초기화합니다. 기본적으로 Encoding 속성은 UUEncode로 설정합니다. 권장되는 대체 항목: System.Net.Mail.
public:
MailAttachment(System::String ^ filename);
public MailAttachment (string filename);
new System.Web.Mail.MailAttachment : string -> System.Web.Mail.MailAttachment
Public Sub New (filename As String)
매개 변수
- filename
- String
첨부 파일의 이름입니다.
예제
//This example shows how to programmatically add attached files
//to a mail lessage.
MailMessage myMail = new MailMessage();
// Concatenate a list of attachment files in a string.
string sAttach = @"C:\images\image1.jpg,C:\images\image2.jpg,C:\images\image3.jpg";
// Build an IList of mail attachments using the files named in the string.
char[] delim = new char[] {','};
foreach (string sSubstr in sAttach.Split(delim))
{
MailAttachment myAttachment = new MailAttachment(sSubstr);
myMail.Attachments.Add(myAttachment);
}
'This example shows how to programmatically add attachments
'to a mail lessage.
Dim MyMail As MailMessage = New MailMessage()
Dim iLoop1 As integer
' Concatenate a list of attachment files in a string.
Dim sAttach As String = "C:\images\image1.jpg,C:\images\image2.jpg,C:\images\image3.jpg"
' Build an IList of mail attachments using the files named in the string.
Dim delim As Char = ","
Dim sSubstr As String
For Each sSubstr in sAttach.Split(delim)
Dim myAttachment As MailAttachment = New MailAttachment(sSubstr)
myMail.Attachments.Add(myAttachment)
Next
설명
메일 첨부 파일은 메일을 보내는 동안 잠겨 있습니다.
적용 대상
MailAttachment(String, MailEncoding)
첨부 파일에 지정된 파일 이름 및 인코딩 형식을 사용하여 MailAttachment 클래스의 새 인스턴스를 초기화합니다. 권장되는 대체 항목: System.Net.Mail.
public:
MailAttachment(System::String ^ filename, System::Web::Mail::MailEncoding encoding);
public MailAttachment (string filename, System.Web.Mail.MailEncoding encoding);
new System.Web.Mail.MailAttachment : string * System.Web.Mail.MailEncoding -> System.Web.Mail.MailAttachment
Public Sub New (filename As String, encoding As MailEncoding)
매개 변수
- filename
- String
첨부 파일의 이름입니다.
- encoding
- MailEncoding
첨부 파일의 MailEncoding 형식입니다.