HttpHelper.cs 521 B

1234567891011121314151617
  1. using System.Net;
  2. using System.Text;
  3. namespace ET.Server
  4. {
  5. public static class HttpHelper
  6. {
  7. public static void Response(HttpListenerContext context, object response)
  8. {
  9. byte[] bytes = JsonHelper.ToJson(response).ToUtf8();
  10. context.Response.StatusCode = 200;
  11. context.Response.ContentEncoding = Encoding.UTF8;
  12. context.Response.ContentLength64 = bytes.Length;
  13. context.Response.OutputStream.Write(bytes, 0, bytes.Length);
  14. }
  15. }
  16. }