blob: a09ed254a5caf9113c404f36017b1c76a174197d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.Http
{
/// <summary>
/// Enum to indicate whether error details, such as exception messages and stack traces, should be included in error messages.
/// </summary>
public enum IncludeErrorDetailPolicy
{
/// <summary>
/// Only include error details when responding to a local request.
/// </summary>
LocalOnly = 0,
/// <summary>
/// Always include error details.
/// </summary>
Always,
/// <summary>
/// Never include error details.
/// </summary>
Never
}
}
|