 | ExitingEventHandler Delegate |
Represents the method that will handle the OnExiting event raised when application has exited.
For more information please see
OnExiting(Int32).
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
Syntaxpublic delegate void ExitingEventHandler(
int exitCode
)
Public Delegate Sub ExitingEventHandler (
exitCode As Integer
)
Dim instance As New ExitingEventHandler(AddressOf HandlerMethod)
Parameters
- exitCode
- Type: SystemInt32
Exit code returned to the system upon application's exiting. Upon successful closing of the application
If application has been closed successfully, exit code is 0.
See Also