Example #1
0
        public void Start()
        {
            LOG.Write("Radiopaedia Upload Agent");
            LOG.Write("Created by Andy Le of The Royal Melbourne Hospital");
            LOG.Write("Built: " + LOG.RetrieveLinkerTimestamp().ToString("dd MMMM yyyy | HH:mm:ss"));
            LOG.Write("Service Started");
            var sl = new ServiceLoop();

            System.Threading.Thread listenerCaller = new System.Threading.Thread(new System.Threading.ThreadStart(sl.StartHttp));
            listenerCaller.Start();
        }
Example #2
0
 public void Start()
 {
     LOG.Write("Radiopaedia Upload Agent");
     LOG.Write("Created by Andy Le of The Royal Melbourne Hospital");
     LOG.Write("Built: " + LOG.RetrieveLinkerTimestamp().ToString("dd MMMM yyyy | HH:mm:ss"));
     LOG.Write("Service Started");            
     var sl = new ServiceLoop();
     System.Threading.Thread listenerCaller = new System.Threading.Thread(new System.Threading.ThreadStart(sl.StartHttp));
     listenerCaller.Start();
 }