示例#1
0
 public static void Setup()
 {
     // start the thread when the service has been start up
     ServiceState.Started += delegate()
     {
         logoDownloader = new LogoDownloader();
         Task.Factory.StartNew(logoDownloader.Init);
     };
 }
示例#2
0
 public static void Setup()
 {
     // start the thread when the service has been start up
     ServiceState.Started += delegate()
     {
         logoDownloader = new LogoDownloader();
         Task.Factory.StartNew(logoDownloader.Init);
     };
 }
示例#3
0
 public void Start()
 {
     LogoDownloader.Setup();
 }