Added code to see if the current thread is trying to abort and if so stops blocking.
This commit is contained in:
parent
6c64bbe4be
commit
98eaa87df6
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user