示例#1
0
 public static void SendJson(HttpListenerContext ctx, object O)
 {
     HTTP.SendJson(ctx, O);
 }
示例#2
0
 public static void NotFound(HttpListenerContext ctx)
 {
     HTTP.HTTP404(ctx);
 }
示例#3
0
 public static void Redirect(HttpListenerContext ctx, string URL, bool Permanent = false)
 {
     HTTP.Redirect(ctx, URL, Permanent);
 }