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> /// </summary>
public void Block() public void Block()
{ {
while (this.HttpListener != null) while (this.HttpListener != null && Thread.CurrentThread.ThreadState != ThreadState.AbortRequested && Thread.CurrentThread.ThreadState != ThreadState.Aborted)
if (!Thread.Yield()) if (!Thread.Yield())
Thread.Sleep(1000); Thread.Sleep(1000);
} }