Beispiel #1
0
 public static void Done(string particularPart, bool system = true)
 {
     ThreadSeeker.addMessage(particularPart, "done", false, system);
 }
Beispiel #2
0
 public static void Fail(string particularPart, string failMessage = "", bool system = true)
 {
     ThreadSeeker.addMessage(particularPart, "fail. " + failMessage, true, system, false);
 }
Beispiel #3
0
 public static void Cancel(string particularPart, bool system = false)
 {
     ThreadSeeker.addMessage(particularPart, "cancel", false, system, true);
 }
Beispiel #4
0
 public static void Stop(string particularPart, bool system = false)
 {
     ThreadSeeker.addMessage(particularPart, "stop", false, system, true);
 }
Beispiel #5
0
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
            public static void NotNeeded(string particularPart, bool system = true)
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
            {
                ThreadSeeker.addMessage(particularPart, "not needed", false, system);
            }