Interface IMIMEPart
interface description to MIMEpart class.
Inherited Members
Namespace: Syncfusion.MIME
Assembly: Syncfusion.MIME.Base.dll
Syntax
public interface IMIMEPart : IMIMESerialization
Properties
Close
get/set if current part must close itself.
Declaration
bool Close { get; set; }
Property Value
Type |
---|
System.Boolean |
Data
Get or Set Mime part data.
Declaration
Stream Data { get; set; }
Property Value
Type |
---|
System.IO.Stream |
Header
Part header which contains additional information about part data.
Declaration
IMIMEPartHeader Header { get; }
Property Value
Type |
---|
IMIMEPartHeader |
UniqueBoundary
Unique indetifier used by MIME document parser for part finding.
Declaration
string UniqueBoundary { get; }
Property Value
Type |
---|
System.String |
Methods
GetData()
gets parts data.
Declaration
byte[] GetData()
Returns
Type | Description |
---|---|
System.Byte[] | data. |