C# 클래스 Sage.SData.Client.Mime.MimePart

Represents a MIME protocol message part.
상속: IDisposable
파일 보기 프로젝트 열기: Saleslogix/SDataCSharpClientLib

공개 메소드들

메소드 설명
Dispose ( ) : void
MimePart ( Stream content ) : System

Initializes a new instance of the MimePart class using the supplied content.

MimePart ( Stream content, WebHeaderCollection headers ) : System

Initializes a new instance of the MimePart class using the supplied content and headers.

WriteTo ( StreamWriter writer, string boundary ) : void

Writes the MIME part to the specified stream writer.

비공개 메소드들

메소드 설명
SetHeaderValue ( HttpRequestHeader name, string value ) : void
SetHeaderValue ( string name, string value ) : void

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

MimePart() 공개 메소드

Initializes a new instance of the MimePart class using the supplied content.
public MimePart ( Stream content ) : System
content Stream The content of the MIME part.
리턴 System

MimePart() 공개 메소드

Initializes a new instance of the MimePart class using the supplied content and headers.
public MimePart ( Stream content, WebHeaderCollection headers ) : System
content Stream The content of the MIME part.
headers System.Net.WebHeaderCollection The headers of the MIME part.
리턴 System

WriteTo() 공개 메소드

Writes the MIME part to the specified stream writer.
public WriteTo ( StreamWriter writer, string boundary ) : void
writer System.IO.StreamWriter The destination writer to write to.
boundary string The unique string used to designated the beginning of the part.
리턴 void