Back to product page
- Introduction
- License agreement
- Getting Started
- Objects
- Enumerations
- wodHttpDLX
- Methods
- Properties
- Authentication
- AutoRedirect
- BindIP
- Blocking
- CertErrors
- Certificate
- Compression
- Hostname
- HTTPversion
- IgnoreCertErrors
- KeepAlive
- LastError
- LastErrorText
- LocalCertBag
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- ProxyAuthentication
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- Request
- Response
- Secure
- Socket
- SSLCipherList
- State
- Timeout
- URL
- UseIPv6
- Version
- Events
- wodHttpNotify
- HttpCookie
- HttpCookies
- HttpHeader
- HttpHeaders
- HttpRequest
- HttpRequestFormPost
- HttpRequestFormUpload
- HttpResponse
- How to get support?
- Technical information
- Fast notifications interface
- Error list
StateChange event
Fires when wodHttpDLX changes its state.
Syntax
- Basic
Private Sub object_StateChange(OldState)
The StateChange(object,OldState) syntax has these parts:
The StateChange(object,OldState) syntax has these parts:
object | A wodHttpDLX object. |
OldState | A HttpStates enumeration, as described in settings. Holds previous state. |
Remarks
The settings for value are:
Constant | Value | Description |
---|---|---|
StateNotConnected | 0 | Not connected. |
StateConnecting | 1 | Connecting to server. |
StateConnected | 2 | Connected - idle. |
StateSendingHeaders | 3 | Sending Headers data. |
StateSendingBody | 4 | Sending body data. |
StateWaitingResponse | 5 | Waiting for response from the server. |
StateReceivingHeaders | 6 | Receiving Headers data. |
StateReceivingBody | 7 | Receiving body data. |
StateDisconnecting | 8 | Disconnecting. |