Description
-
Holds length of received body.
Property type
-
A Long value.
Syntax
-
object.Length
The Length Property syntax has these parts:
| object |
An expression
evaluating to an object of type HttpResponse. |
Remarks
-
After a document is received, this property will contain
its length ONLY if it as specified by the server. Document
can be accessed through the Body or Filename
properties.
This property is filled only if server sends
'Content-Length' header. If
not, you will get received body length using
Len(Response.Body) call (in VB).
|