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
'Declaration
Public Enumeration IncludeErrorDetailPolicy
'Usage
Dim instance As IncludeErrorDetailPolicy
public enum IncludeErrorDetailPolicy
public enum class IncludeErrorDetailPolicy
type IncludeErrorDetailPolicy
public enum IncludeErrorDetailPolicy
Members
Member name | Description | |
---|---|---|
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. | |
Always | Always include error details. | |
Never | Never include error details. |