public static IResponse HttpVersionNotSupported(this IIs @this) => @this.Status(505);
public static IResponse PaymentRequired(this IIs @this) => @this.Status(402);
public static IResponse NotFound(this IIs @this) => @this.Status(404);
public static IResponse RedirectKeepVerb(this IIs @this) => @this.Status(307);
public static IResponse BadRequest(this IIs @this) => @this.Status(400);
public static IResponse SeeOther(this IIs @this) => @this.Status(303);
public static IResponse UseProxy(this IIs @this) => @this.Status(305);
public static IResponse NonAuthoritativeInformation(this IIs @this) => @this.Status(203);
public static IResponse NoContent(this IIs @this) => @this.Status(204);
public static IResponse Created(this IIs @this) => @this.Status(201);
public static IResponse Accepted(this IIs @this) => @this.Status(202);
public static IResponse OK(this IIs @this) => @this.Status(200);
public static IResponse SwitchingProtocols(this IIs @this) => @this.Status(101);
public static IResponse Continue(this IIs @this) => @this.Status(100);
public static IResponse Redirect(this IIs @this) => @this.Status(302);
public static IResponse ResetContent(this IIs @this) => @this.Status(205);
public static IResponse RedirectMethod(this IIs @this) => @this.Status(303);
public static IResponse PartialContent(this IIs @this) => @this.Status(206);
public static IResponse NotModified(this IIs @this) => @this.Status(304);
public static IResponse Ambiguous(this IIs @this) => @this.Status(300);
public static IResponse Unused(this IIs @this) => @this.Status(306);
public static IResponse MultipleChoices(this IIs @this) => @this.Status(300);
public static IResponse TemporaryRedirect(this IIs @this) => @this.Status(307);
public static IResponse Moved(this IIs @this) => @this.Status(301);
public static IResponse Unauthorized(this IIs @this) => @this.Status(401);
public static IResponse MovedPermanently(this IIs @this) => @this.Status(301);
public static IResponse Forbidden(this IIs @this) => @this.Status(403);
public static IResponse Found(this IIs @this) => @this.Status(302);
public static IResponse MethodNotAllowed(this IIs @this) => @this.Status(405);
public static IResponse GatewayTimeout(this IIs @this) => @this.Status(504);