Click or drag to resize

CEmail.StreamIn Method

X#
This method gets called when an email messages is received. It calls into the Storage object to decode and store attachments.

Namespace:  VO
Assembly:  VOInternetClasses (in VOInternetClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD StreamIn(
	cData AS STRING
) AS LOGIC
Request Example View Source

Parameters

cData
Type: String
The string that was received and needs to be decoded

Return Value

Type: Logic
Remarks
There is usually no need to call this method yourself. It gets called from the CPop class when receiving emails. It also gets called from the CEMail:Decode() message when decoding a raw message.
Tip Tip
Visual Objects tries to avoid building large emails completely in memory. Therefore it reads or writes them in chunks. The StreamIn() and StreamOut() methods on the CEmail class handle these chunks.
See Also