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