메소드 | 설명 | |
---|---|---|
Attachment ( string fileName ) : System |
Creates attechment from file.
|
|
Attachment ( string fileName, Stream strm ) : System |
Creates attachment from stream with specified file name
|
|
Attachment ( string fileName, byte fileData ) : System |
Creates attachment from data with specified file name.
|
public Attachment ( string fileName ) : System | ||
fileName | string | File name which to attach. Eg. c:\aaa.eml . |
리턴 | System |
public Attachment ( string fileName, Stream strm ) : System | ||
fileName | string | File name. Eg. aaa.eml . |
strm | Stream | Stream which data to attach. NOTE: Data will be taken from stream current position. |
리턴 | System |
public Attachment ( string fileName, byte fileData ) : System | ||
fileName | string | File name. Eg. aaa.eml . |
fileData | byte | Data which to attach. |
리턴 | System |