Normal
This code segment[CODE] catch (ThreadAbortException) { Log.Info("TvService is beeing stopped"); }[/CODE]is not needed since the termination of the Tvservice thread is not initiated by abort() (as in TVE3) but by a wait handle. So there is no more need for catching the abort exception. The other changes are "nice to have", but I did not want to change more than necessary.Michael
This code segment
[CODE] catch (ThreadAbortException)
{
Log.Info("TvService is beeing stopped");
}[/CODE]
is not needed since the termination of the Tvservice thread is not initiated by abort() (as in TVE3) but by a wait handle. So there is no more need for catching the abort exception. The other changes are "nice to have", but I did not want to change more than necessary.
Michael