- Timestamp:
- Aug 6, 2022, 11:32:32 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/MapRendering/Web/API/GetServerInfo.cs
r383 r387 1 1 using System; 2 2 using AllocsFixes.JSON; 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 GetServerInfo : WebAPI { 8 public override void HandleRequest (HttpListenerRequest _req, HttpListenerResponse _resp, WebConnection _user, 9 int _permissionLevel) { 5 public class GetServerInfo : AbsWebAPI { 6 public override void HandleRequest (RequestContext _context) { 10 7 JSONObject serverInfo = new JSONObject (); 11 8 … … 43 40 44 41 45 W riteJSON (_resp, serverInfo);42 WebUtils.WriteJson (_context.Response, serverInfo); 46 43 } 47 44 }
Note:
See TracChangeset
for help on using the changeset viewer.