CEmail.StreamIn Method | |
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
public virtual bool StreamIn(
string cData
)
Request Example
View SourceParameters
- cData
- Type: String
The string that was received and needs to be decoded
Return Value
Type:
LogicRemarks
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 |
---|
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