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

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

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

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

Same methods

Response::RedirectMethod ( ) : Response
Response