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

ProxyAuthenticationRequired() public méthode

public ProxyAuthenticationRequired ( bool skipIisCustomErrors = true ) : Response
skipIisCustomErrors bool
Résultat Response
        public Response ProxyAuthenticationRequired(bool skipIisCustomErrors = true)
        {
            _skipIisCustomErrors = skipIisCustomErrors;

            return StatusCode(HttpStatusCode.ProxyAuthenticationRequired);
        }
Response