source: binary-improvements/MapRendering/Web/API/WebAPI.cs@ 302

Last change on this file since 302 was 279, checked in by alloc, 8 years ago

Mod stuff

File size: 654 bytes
RevLine 
[230]1using System;
2using System.Net;
3using System.Text;
4
5namespace AllocsFixes.NetConnections.Servers.Web.API
6{
7 public abstract class WebAPI
8 {
9 public void WriteJSON (HttpListenerResponse resp, JSON.JSONNode root)
10 {
11 byte[] buf = Encoding.UTF8.GetBytes (root.ToString());
12 resp.ContentLength64 = buf.Length;
13 resp.ContentType = "application/json";
14 resp.ContentEncoding = Encoding.UTF8;
15 resp.OutputStream.Write (buf, 0, buf.Length);
16 }
17
[244]18 public abstract void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, WebConnection user, int permissionLevel);
[279]19
20 public virtual int DefaultPermissionLevel () {
21 return 0;
22 }
[230]23 }
24}
25
Note: See TracBrowser for help on using the repository browser.