Response.Redirect constructor

Response.Redirect(
  1. String location
)

Constructor for 302 redirect responses.

Implementation

Response.Redirect(String location)
    : this(HttpStatus.temporaryRedirect, body: location);