Interface ICommandTracer
Provides a means of tracing commands and responses passing between a Connection object and a JobTracker instance.
Namespace: Moraware.JobTrackerAPI5.DevelopmentAssistance
Assembly: JobTrackerAPI5.dll
Syntax
public interface ICommandTracer
Methods
Command(String, String)
Called before a command is issued.
Declaration
void Command(string commandDescription_, string command_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | commandDescription_ | Description of the command being issued. |
| System.String | command_ | The command being issued. |
CommandResponse(String, String)
Called after a command is executed and the response is parsed successfully.
Declaration
void CommandResponse(string commandDescription_, string response_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | commandDescription_ | Description of the command that was issued. |
| System.String | response_ | Response to the command. |