| MimeFactorySplit Method |
Splits raw eml data in to MIME headers and MIME body.
Namespace:
Limilabs.Mail.MIME
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public void Split(
byte[] eml,
out string headers,
out byte[] body
)
Public Sub Split (
eml As Byte(),
<OutAttribute> ByRef headers As String,
<OutAttribute> ByRef body As Byte()
)
public:
void Split(
array<unsigned char>^ eml,
[OutAttribute] String^% headers,
[OutAttribute] array<unsigned char>^% body
)
member Split :
eml : byte[] *
headers : string byref *
body : byte[] byref -> unit
Parameters
- eml
- Type: SystemByte
Raw eml data. - headers
- Type: SystemString
MIME headers. - body
- Type: SystemByte
MIME body.
See Also