Added code to see if the current thread is trying to abort and if so stops blocking.

This commit is contained in:
MattMo 2022-03-20 12:44:30 -07:00
parent 6c64bbe4be
commit 98eaa87df6

View File

@ -197,7 +197,7 @@ namespace MontoyaTech.Rest.Net
/// </summary>
public void Block()
{
while (this.HttpListener != null)
while (this.HttpListener != null && Thread.CurrentThread.ThreadState != ThreadState.AbortRequested && Thread.CurrentThread.ThreadState != ThreadState.Aborted)
if (!Thread.Yield())
Thread.Sleep(1000);
}