public static void SendJson(HttpListenerContext ctx, object O) { HTTP.SendJson(ctx, O); }
public static void NotFound(HttpListenerContext ctx) { HTTP.HTTP404(ctx); }
public static void Redirect(HttpListenerContext ctx, string URL, bool Permanent = false) { HTTP.Redirect(ctx, URL, Permanent); }