wodSSH ActiveX Control - StateChange Method
      
 

Description

Called when wodSSH changes its state.


Return Type

None  


Syntax

object.StateChange Owner, OldState



The StateChange Method syntax has these parts:

Part Description
object An expression evaluating to an object of type IwodSSHNotify.
Owner A wodSSHCom object.
OldState A StatesEnum enumeration, as described in settings.

Settings

The settings for OldState are:

Constant Value Description
 Disconnected 0 Disconnected from server.
 Connecting 1 Connecting to server.
 LogonInProgress 2 Sending authentication data.
 Connected 3 Connected to server - idle.
 ReceivedPrompt 4 Received command prompt.
 Receiving 5 Receiving data from server.
 Sending 6 Sending data to server.

Remarks

This method is called only if you implemented the IwodSSHNotify interface in your application, and the wodSSH.Notification property has received a reference to the instance of your implementation.

The StateChange notification method is called each time wodSSH's internal state changes. Initially, it is set to Disconnected. Once you initiate new connection, it will change to Connecting, etc..

Using this notification method you can see if there is something happening with wodSSH, or it is idle and waiting for your commands.

You can determine the current state using the State property.