Junior.Route.Routing.Responses.Response.SeeOther C# (CSharp) Méthode

SeeOther() public méthode

public SeeOther ( string location ) : Response
location string
Résultat Response
        public Response SeeOther(string location)
        {
            location.ThrowIfNull("location");

            return StatusCode(HttpStatusCode.SeeOther).Header("Location", location);
        }

Same methods

Response::SeeOther ( ) : Response
Response