예제 #1
0
파일: ThreadSeeker.cs 프로젝트: navirter/My
 public static void Done(string particularPart, bool system = true)
 {
     ThreadSeeker.addMessage(particularPart, "done", false, system);
 }
예제 #2
0
파일: ThreadSeeker.cs 프로젝트: navirter/My
 public static void Fail(string particularPart, string failMessage = "", bool system = true)
 {
     ThreadSeeker.addMessage(particularPart, "fail. " + failMessage, true, system, false);
 }
예제 #3
0
파일: ThreadSeeker.cs 프로젝트: navirter/My
 public static void Cancel(string particularPart, bool system = false)
 {
     ThreadSeeker.addMessage(particularPart, "cancel", false, system, true);
 }
예제 #4
0
파일: ThreadSeeker.cs 프로젝트: navirter/My
 public static void Stop(string particularPart, bool system = false)
 {
     ThreadSeeker.addMessage(particularPart, "stop", false, system, true);
 }
예제 #5
0
파일: ThreadSeeker.cs 프로젝트: navirter/My
#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);
            }