コード例 #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);
 }