Esempio n. 1
0
        public void error(string text)
        {
            string        message = "ERROR-" + text;
            UpdaterString d       = new UpdaterString(updateLog);

            this.Dispatcher.Invoke(d, message);
        }
Esempio n. 2
0
        public void debug(string text)
        {
            string        message = "DEBUG-" + text;
            UpdaterString d       = new UpdaterString(updateLog);

            this.Dispatcher.Invoke(d, message);
        }
Esempio n. 3
0
        public void info(string text)
        {
            string        message = "INFO-" + text;
            UpdaterString d       = new UpdaterString(updateLog);

            this.Dispatcher.Invoke(d, message);
        }
Esempio n. 4
0
 public void debug(string text)
 {
     string message = "DEBUG-" + text;
     UpdaterString d = new UpdaterString(updateLog);
     this.Dispatcher.Invoke(d, message);
 }
Esempio n. 5
0
 public void info(string text)
 {
     string message = "INFO-" + text;
     UpdaterString d = new UpdaterString(updateLog);
     this.Dispatcher.Invoke(d, message);
 }
Esempio n. 6
0
 public void error(string text)
 {
     string message = "ERROR-" + text;
     UpdaterString d = new UpdaterString(updateLog);
     this.Dispatcher.Invoke(d, message);
 }