[Mono.Debugger.Soft] Updated closed/disconnected state when connection is force-closed
authorJeffrey Stedfast <jeff@xamarin.com>
Fri, 31 May 2013 18:27:30 +0000 (14:27 -0400)
committerJeffrey Stedfast <jeff@xamarin.com>
Fri, 31 May 2013 18:27:30 +0000 (14:27 -0400)
mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs

index e8d5f58c8edbe18b68889dbf166a6caeb9f4b801..c7c1c02dde183c0651c178a948b1612b88c0caa0 100644 (file)
@@ -2321,6 +2321,8 @@ namespace Mono.Debugger.Soft
 
                public void ForceDisconnect ()
                {
+                       closed = true;
+                       disconnected = true;
                        TransportClose ();
                }
        }