RequestDataUChar - cWebHttpHandler

Reads request data into a UChar array

Type: Function

Return Data Type: UChar[]

Parameters: Integer iSize

ParameterDescription
iSizeThe amount of data to read from the request body. If 0 or -1, the entire remaining request will be read. If iSize is bigger than the remaining data, the resulting array will only contain the remaining bytes.


Return Value


Syntax
Function RequestDataUChar Integer iSize Returns UChar[]

Call: Get RequestDataUChar iSize to UCharArrayVariable


Description

This function reads request data into a UChar array. It can read the entire request or just a chunk of the request depending on iSize.

If it has been called before, it will continue reading where it stopped the last time.