Junior.Route.Routing.Responses.Response.SeeOther C# (CSharp) Метод

SeeOther() публичный Метод

public SeeOther ( string location ) : Response
location string
Результат Response
        public Response SeeOther(string location)
        {
            location.ThrowIfNull("location");

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

Same methods

Response::SeeOther ( ) : Response
Response