- Timestamp:
- Aug 6, 2022, 11:32:32 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/MapRendering/Web/API/GetWebUIUpdates.cs
r383 r387 1 1 using AllocsFixes.JSON; 2 2 using AllocsFixes.LiveData; 3 using HttpListenerRequest = SpaceWizards.HttpListener.HttpListenerRequest;4 using HttpListenerResponse = SpaceWizards.HttpListener.HttpListenerResponse;5 3 6 4 namespace AllocsFixes.NetConnections.Servers.Web.API { 7 public class GetWebUIUpdates : WebAPI { 8 public override void HandleRequest (HttpListenerRequest _req, HttpListenerResponse _resp, WebConnection _user, 9 int _permissionLevel) { 5 public class GetWebUIUpdates : AbsWebAPI { 6 public override void HandleRequest (RequestContext _context) { 10 7 int latestLine; 11 if (_ req.QueryString ["latestLine"] == null ||12 !int.TryParse (_ req.QueryString ["latestLine"], out latestLine)) {8 if (_context.Request.QueryString ["latestLine"] == null || 9 !int.TryParse (_context.Request.QueryString ["latestLine"], out latestLine)) { 13 10 latestLine = 0; 14 11 } … … 28 25 result.Add ("newlogs", new JSONNumber (LogBuffer.Instance.LatestLine - latestLine)); 29 26 30 W riteJSON (_resp, result);27 WebUtils.WriteJson (_context.Response, result); 31 28 } 32 29
Note:
See TracChangeset
for help on using the changeset viewer.