SharpCifs.Util.Sharpen.Thread.Interrupted C# (CSharp) 메소드

Interrupted() 공개 정적인 메소드

public static Interrupted ( ) : bool
리턴 bool
		public static bool Interrupted ()
		{
			if (Thread._wrapperThread == null) {
				return false;
			}
			Thread wrapperThread = Thread._wrapperThread;
			lock (wrapperThread) {
				bool interrupted = Thread._wrapperThread._interrupted;
				Thread._wrapperThread._interrupted = false;
				return interrupted;
			}
		}