TerminalInitializedEventHandler Delegate
Event handler delegate for session started event.
Check if errors occurred during terminal initialization
private void OpenSystemsGraphicsTerminalControl1_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;
}
}