Ignore:
Timestamp:
Aug 2, 2017, 6:46:15 PM (7 years ago)
Author:
alloc
Message:

Fixes update A16.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/API/WebAPI.cs

    r279 r306  
    77        public abstract class WebAPI
    88        {
    9                 public void WriteJSON (HttpListenerResponse resp, JSON.JSONNode root)
     9                public static void WriteJSON (HttpListenerResponse resp, JSON.JSONNode root)
    1010                {
    1111                        byte[] buf = Encoding.UTF8.GetBytes (root.ToString());
     
    1414                        resp.ContentEncoding = Encoding.UTF8;
    1515                        resp.OutputStream.Write (buf, 0, buf.Length);
     16                }
     17
     18                public static void WriteText (HttpListenerResponse _resp, string _text)
     19                {
     20                        byte[] buf = Encoding.UTF8.GetBytes (_text);
     21                        _resp.ContentLength64 = buf.Length;
     22                        _resp.ContentType = "text/plain";
     23                        _resp.ContentEncoding = Encoding.UTF8;
     24                        _resp.OutputStream.Write (buf, 0, buf.Length);
    1625                }
    1726
Note: See TracChangeset for help on using the changeset viewer.