Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies whether error details, such as exception messages and stack traces, should be included in error messages.
Namespace: System.Web.Http
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
public enum IncludeErrorDetailPolicy
public enum class IncludeErrorDetailPolicy
type IncludeErrorDetailPolicy
Public Enumeration IncludeErrorDetailPolicy
Members
| Member name | Description | |
|---|---|---|
| Always | Always include error details. |
|
| Default | Use the default behavior for the host environment. For ASP.NET hosting, use the value from the customErrors element in the Web.config file. For self-hosting, use the value LocalOnly. |
|
| LocalOnly | Only include error details when responding to a local request. |
|
| Never | Never include error details. |
See Also
Return to top