TerminalInitializedEventHandler Delegate
Event handler delegate for session started event.
Check for any errors that may have occurred during termial initialization
private void openSystemsTerminalControl1_TerminalInitializedEvent(object sender, AsyncCompletedEventArgs e)
{
// Check if error occurred during the terminal initialization
if (e.Error != null)
{
MessageBox.Show("Error during terminal initialization step: " + e.Error); return;
}
}