Function CSPRequest::BinaryRead()
Description:
Reads ulSize bytes of posted data from the client and puts it in buffer Data.
 |
Prototype:
unsigned long BinaryRead(CSPBuffer& Data, unsigned long ulSize = 0);
Arguments:
- CSPBuffer& Data [OUT]
Incoming data buffer.
- unsigned long ulSize = 0 [IN]
Data size. Default value is 0.
Return value:
Returns the number of bytes read.
Remarks:
If ulSize is 0, all the available data is read and put into buffer Data. In such case Data will grow appropriately.
See also:
member function GetTotalBytes() class CSPBuffer
|
|