RequestDataUChar - cWebHttpHandler
Reads request data into a UChar array
Type: Function
Return Data Type: UChar[]
Parameters
| Parameter | Type | Description |
|---|---|---|
| iSize | Integer | The 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. |
Syntax
Function RequestDataUChar Integer iSize Returns UChar[]
Call Example
Get RequestDataUChar iSize to UChar[]Variable
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.