Esempio n. 1
0
 /// <summary>
 ///   Set whether the output is hidden from the screen or not.
 /// </summary>
 /// <returns>True to hide the output, false to show it.</returns>
 public void SetImportance(StandardOutImportance importance)
 {
     if (_importance == importance)
     {
         return;
     }
     Raw("IMPORTANT", "StandardOut Importance Changed [ " + _importance + " -> " + importance + " ]",
         ConsoleColor.Yellow);
     _importance = importance;
 }
Esempio n. 2
0
 /// <summary>
 ///   Set whether the output is hidden from the screen or not.
 /// </summary>
 /// <returns>True to hide the output, false to show it.</returns>
 public void SetImportance(StandardOutImportance importance)
 {
     if (_importance == importance) return;
     Raw("IMPORTANT", "StandardOut Importance Changed [ " + _importance + " -> " + importance + " ]",
         ConsoleColor.Yellow);
     _importance = importance;
 }
Esempio n. 3
0
 /// <summary>
 /// Set whether the output is hidden from the screen or not.
 /// </summary>
 /// <returns>True to hide the output, false to show it.</returns>
 public void SetImportance(StandardOutImportance Importance)
 {
     if (this.fImportance != Importance)
     {
         Raw("IMPORTANT", "StandardOut Importance Changed [ " + this.fImportance.ToString() + " -> " + Importance.ToString() + " ]", ConsoleColor.Yellow, true);
         this.fImportance = Importance;
     }
 }