 | JobStoppedEventHandler Delegate |
Represents the method that will handle the OnJobStopped event raised when an application
job has finished. For more information please see
OnJobStopped(JobStopStatus, String).
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
Syntaxpublic delegate void JobStoppedEventHandler(
JobStopStatus status,
string message
)
Public Delegate Sub JobStoppedEventHandler (
status As JobStopStatus,
message As String
)
Dim instance As New JobStoppedEventHandler(AddressOf HandlerMethod)
Parameters
- status
- Type: EMInvent.InventSim.COMServerJobStopStatus
Exit status of the finished job. For information
about status values see JobStopStatus. - message
- Type: SystemString
Additional information about finished job.
See Also