- Timestamp:
- Aug 1, 2022, 12:54:31 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/MapRendering/Web/ConnectionHandler.cs
r369 r382 9 9 10 10 public WebConnection IsLoggedIn (string _sessionId, IPAddress _ip) { 11 if (!connections. ContainsKey (_sessionId)) {11 if (!connections.TryGetValue (_sessionId, out WebConnection con)) { 12 12 return null; 13 13 } 14 15 WebConnection con = connections [_sessionId];16 14 17 15 // if (con.Age.TotalMinutes > parent.sessionTimeoutMinutes) {
Note:
See TracChangeset
for help on using the changeset viewer.