C# 클래스 LumiSoft.Net.Mime.Attachment

파일 보기 프로젝트 열기: jeske/StepsDB-alpha 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Attachment() 공개 메소드

Creates attechment from file.
public Attachment ( string fileName ) : System
fileName string File name which to attach. Eg. c:\aaa.eml .
리턴 System

Attachment() 공개 메소드

Creates attachment from stream with specified file name
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

Attachment() 공개 메소드

Creates attachment from data with specified file name.
public Attachment ( string fileName, byte fileData ) : System
fileName string File name. Eg. aaa.eml .
fileData byte Data which to attach.
리턴 System