Function CSPRequest::GetAvailableBytes()
Description:
Retrieves the number of bytes of posted data sent by the client that is available for retrieval by calling the member function BinaryRead
 |
Prototype:
unsigned long GetAvailableBytes() const;
Arguments:
No arguments (void).
Return value:
Returns the number of bytes.
Remarks:
You can use this member function in combination with the member function GetTotalBytes. GetTotalBytes return the total number of bytes sent by the client. GetAvailableBytes returns the number of bytes left for retrieval after a subsequent number of calls to the member function BinaryRead.
See also:
member functions BinaryRead, GetTotalBytes
|
|