public static void Done(string particularPart, bool system = true) { ThreadSeeker.addMessage(particularPart, "done", false, system); }
public static void Fail(string particularPart, string failMessage = "", bool system = true) { ThreadSeeker.addMessage(particularPart, "fail. " + failMessage, true, system, false); }
public static void Cancel(string particularPart, bool system = false) { ThreadSeeker.addMessage(particularPart, "cancel", false, system, true); }
public static void Stop(string particularPart, bool system = false) { ThreadSeeker.addMessage(particularPart, "stop", false, system, true); }
#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); }