Rev | Line | |
---|
[230] | 1 | using System;
|
---|
| 2 | using System.Net;
|
---|
| 3 | using System.Text;
|
---|
| 4 |
|
---|
| 5 | namespace 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.