source: binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/API/WebAPI.cs@ 163

Last change on this file since 163 was 154, checked in by alloc, 10 years ago

fixes

File size: 578 bytes
Line 
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
18 public abstract void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user);
19 }
20}
21
Note: See TracBrowser for help on using the repository browser.