Пример #1
0
        public void error(string text)
        {
            string        message = "ERROR-" + text;
            UpdaterString d       = new UpdaterString(updateLog);

            this.Dispatcher.Invoke(d, message);
        }
Пример #2
0
        public void debug(string text)
        {
            string        message = "DEBUG-" + text;
            UpdaterString d       = new UpdaterString(updateLog);

            this.Dispatcher.Invoke(d, message);
        }
Пример #3
0
        public void info(string text)
        {
            string        message = "INFO-" + text;
            UpdaterString d       = new UpdaterString(updateLog);

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