Response.RedirectForever constructor

Response.RedirectForever(
  1. String location
)

Constructor for 303 redirect responses.

Implementation

Response.RedirectForever(String location)
    : this(HttpStatus.permanentRedirect, body: location);