Changeset 382 for binary-improvements2/MapRendering/Web/WebConnection.cs
- Timestamp:
- Aug 1, 2022, 12:54:31 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/MapRendering/Web/WebConnection.cs
r369 r382 11 11 private readonly string conDescription; 12 12 13 public string SessionID { get; } 14 15 public IPAddress Endpoint { get; } 16 17 public PlatformUserIdentifierAbs UserId { get; } 18 19 public TimeSpan Age => DateTime.Now - lastAction; 20 13 21 public WebConnection (string _sessionId, IPAddress _endpoint, PlatformUserIdentifierAbs _userId) { 14 22 SessionID = _sessionId; … … 19 27 conDescription = "WebPanel from " + Endpoint; 20 28 } 21 22 public string SessionID { get; }23 24 public IPAddress Endpoint { get; }25 26 public PlatformUserIdentifierAbs UserId { get; }27 28 public TimeSpan Age => DateTime.Now - lastAction;29 29 30 30 public static bool CanViewAllPlayers (int _permissionLevel) {
Note:
See TracChangeset
for help on using the changeset viewer.