// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNet.WebUtilities; namespace Microsoft.AspNet.Mvc { /// /// Represents an that when /// executed will produce a Not Found (404) response. /// public class HttpNotFoundResult : HttpStatusCodeResult { /// /// Creates a new instance. /// public HttpNotFoundResult() : base(StatusCodes.Status404NotFound) { } } }