// 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.
namespace System.Web.Http
{
///
/// Enum to indicate whether error details, such as exception messages and stack traces, should be included in error messages.
///
public enum IncludeErrorDetailPolicy
{
///
/// Default to the host specific behavior. This looks at the CustomErrors setting on webhost and
/// defaults to LocalOnly in selfhost.
///
Default = 0,
///
/// Only include error details when responding to a local request.
///
LocalOnly,
///
/// Always include error details.
///
Always,
///
/// Never include error details.
///
Never
}
}