Beispiel #1
0
 protected override void OnFrameworkStarted()
 {
     try
     {
         Task.Factory.StartNew(() =>
         {
             try
             {
                 _facade.Open();
             }
             catch (System.Exception ex)
             {
                 this.Log.Error(ex);
             }
         });
     }
     catch (System.Exception ex)
     {
         base.Log.Error(ex);
     }
 }