Changeset 325 for binary-improvements/MapRendering/Web/ConnectionHandler.cs
- Timestamp:
- Sep 4, 2018, 1:00:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/ConnectionHandler.cs
r250 r325 2 2 using System.Collections.Generic; 3 3 4 namespace AllocsFixes.NetConnections.Servers.Web 5 { 4 namespace AllocsFixes.NetConnections.Servers.Web { 6 5 public class ConnectionHandler { 6 private readonly Dictionary<string, WebConnection> connections = new Dictionary<string, WebConnection> (); 7 7 private Web parent; 8 private Dictionary<string, WebConnection> connections = new Dictionary<string, WebConnection> ();9 8 10 9 public ConnectionHandler (Web _parent) { … … 18 17 19 18 WebConnection con = connections [_sessionId]; 19 20 20 // if (con.Age.TotalMinutes > parent.sessionTimeoutMinutes) { 21 21 // connections.Remove (_sessionId); … … 49 49 } 50 50 } 51 52 51 } 53 52 } 54
Note:
See TracChangeset
for help on using the changeset viewer.