コード例 #1
0
ファイル: RequestHandler.cs プロジェクト: theanti9/irek
 public static string Get404()
 {
     string b = "<h1>Error 404: Page Not Found!</h1>";
     Header h = new Header("HTTP/1.1", "text/html", b.Length, " 404 Not Found");
     return (h.GetHeader() + b);
 }
コード例 #2
0
ファイル: Page.cs プロジェクト: theanti9/irek
 public Page(string body)
 {
     PageHeader = new Header("HTTP/1.1", "text/html", body.Length, " 200 OK");
     Body = body;
 }