Returns value(s) read from the specified request object.
Syntax
read( request )
request.read( )
Parameters
request
|
the request object to read from.
|
Returns
integer
|
the byte read.
-1 if end of file was reached.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
b = Request( ).read( )
Syntax
read( request , bytearray )
request.read( bytearray )
Parameters
request
|
the request object to read from.
|
bytearray
|
a byte arrayobject to read into.
|
Returns
length
|
the number of bytes read.
-1 if end of file was reached.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
sz = Request( ).read( buf )
Syntax
read( request , bytearray , offset , length )
request.read( bytearray , offset , length )
Parameters
request
|
the request object to read from.
|
bytearray
|
a byte array object to read into.
|
offset
|
a starting offset.
|
length
|
the number of bytes to read.
|
Returns
length
|
the number of bytes read.
-1 if end of file was reached.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
sz = Request( ).read( buf, 0, 1024 )
|