wodHttpDLX ActiveX Control - StatusCode Property
      
 

Description

Holds numerical status code.


Property type

An Integer value.  


Syntax

object.StatusCode



The StatusCode Property syntax has these parts:

Part Description
object An expression evaluating to an object of type HttpResponse.

Remarks

When response is received from the server, first received line will contain status for the request. It typically looks like this:

HTTP/1.1 200 OK

or

HTTP/1.1 404 Document not found

Since most clients will parse this status line and use numerical code ('200' or '404' in this case), you might find StatusCode property useful because it will contain exactly these values.