Method | Description | |
---|---|---|
ExtractHeadersAndBody ( Byte fullRawMessage, |
Extract the header part and body part of a message.
|
Method | Description | |
---|---|---|
ExtractHeaders ( String messageContent ) : |
Method that takes a full message and extract the headers from it.
|
|
FindHeaderEndPosition ( Byte messageContent ) : |
Find the end of the header section in a Byte array.
|
|
IsMoreLinesInHeaderValue ( TextReader reader ) : System.Boolean |
Check if the next line is part of the current header value we are parsing by peeking on the next character of the TextReader.
|
public static ExtractHeadersAndBody ( Byte fullRawMessage, |
||
fullRawMessage | Byte | The full message in bytes where header and body needs to be extracted from |
headers | The extracted header parts of the message | |
body | Byte | The body part of the message |
return | void |