Receives a mail message of a specified number by parameter, as a byte array (binary data.).
[Visual Basic]
Public Function ReceiveMessageBytes( _
ByVal targetNum As Integer _
) As Byte()
[C#]
public byte[] ReceiveMessageBytes(
int targetNum
);
Parameters
-
targetNum
- Message number.
Return Value
Returns a received byte array if successful; otherwise null.
Remarks
Can receive a mail message more precisely by using this method.
Example
How to receive a mail message of a specified number by parameter as a byte array.
Dim messageBytes As Byte() = pop.ReceiveMessageBytes(1)
byte[] messageBytes = pop.ReceiveMessageBytes(1);
See Also
AwPop Class | Asterworld.Mail Namespace