コード例 #1
0
 private static IResponse Status(this IIs @this, int statusCode)
 => ((IHas)@this).Status(statusCode);
コード例 #2
0
 public static IResponse PaymentRequired(this IIs @this)
 => @this.Status(402);
コード例 #3
0
 public static IResponse NotFound(this IIs @this)
 => @this.Status(404);
コード例 #4
0
 public static IResponse RedirectKeepVerb(this IIs @this)
 => @this.Status(307);
コード例 #5
0
 public static IResponse BadRequest(this IIs @this)
 => @this.Status(400);
コード例 #6
0
 public static IResponse SeeOther(this IIs @this)
 => @this.Status(303);
コード例 #7
0
 public static IResponse UseProxy(this IIs @this)
 => @this.Status(305);
コード例 #8
0
 public static IResponse NonAuthoritativeInformation(this IIs @this)
 => @this.Status(203);
コード例 #9
0
 public static IResponse NoContent(this IIs @this)
 => @this.Status(204);
コード例 #10
0
 public static IResponse Created(this IIs @this)
 => @this.Status(201);
コード例 #11
0
 public static IResponse Accepted(this IIs @this)
 => @this.Status(202);
コード例 #12
0
 public static IResponse OK(this IIs @this)
 => @this.Status(200);
コード例 #13
0
 public static IResponse SwitchingProtocols(this IIs @this)
 => @this.Status(101);
コード例 #14
0
 public static IResponse Continue(this IIs @this)
 => @this.Status(100);
コード例 #15
0
 public static IResponse Redirect(this IIs @this)
 => @this.Status(302);
コード例 #16
0
 public static IResponse ResetContent(this IIs @this)
 => @this.Status(205);
コード例 #17
0
 public static IResponse RedirectMethod(this IIs @this)
 => @this.Status(303);
コード例 #18
0
 public static IResponse PartialContent(this IIs @this)
 => @this.Status(206);
コード例 #19
0
 public static IResponse NotModified(this IIs @this)
 => @this.Status(304);
コード例 #20
0
 public static IResponse Ambiguous(this IIs @this)
 => @this.Status(300);
コード例 #21
0
 public static IResponse Unused(this IIs @this)
 => @this.Status(306);
コード例 #22
0
 public static IResponse MultipleChoices(this IIs @this)
 => @this.Status(300);
コード例 #23
0
 public static IResponse TemporaryRedirect(this IIs @this)
 => @this.Status(307);
コード例 #24
0
 public static IResponse Moved(this IIs @this)
 => @this.Status(301);
コード例 #25
0
 public static IResponse Unauthorized(this IIs @this)
 => @this.Status(401);
コード例 #26
0
 public static IResponse MovedPermanently(this IIs @this)
 => @this.Status(301);
コード例 #27
0
 public static IResponse Forbidden(this IIs @this)
 => @this.Status(403);
コード例 #28
0
 public static IResponse Found(this IIs @this)
 => @this.Status(302);
コード例 #29
0
 public static IResponse MethodNotAllowed(this IIs @this)
 => @this.Status(405);
コード例 #30
0
 public static IResponse HttpVersionNotSupported(this IIs @this)
 => @this.Status(505);