Commit fa153f2b authored by Matt Hyman's avatar Matt Hyman
Browse files

Add clarifying comment on meaning of UWP web socket disconnect code

parent 0b74bf7e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -127,6 +127,7 @@ namespace Microsoft.Tools.WindowsDevicePortal
            {
                if (this.websocket != null)
                {
                    // Code 1000 indicates that the purpose of the connection has been fulfilled and the connection is no longer needed.
                    this.websocket.Close(1000, "Closed due to user request.");
                    this.websocket = null;
                    this.IsListeningForMessages = false;