14 lines
270 B
C#
14 lines
270 B
C#
using System.Threading;
|
|
|
|
namespace JamesFrowen.SimpleWeb
|
|
{
|
|
internal static class Utils
|
|
{
|
|
public static void CheckForInterupt()
|
|
{
|
|
// sleep in order to check for ThreadInterruptedException
|
|
Thread.Sleep(1);
|
|
}
|
|
}
|
|
}
|