CustomErrorsModes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how custom errors are handled.
public enum class CustomErrorsModes
[System.Runtime.InteropServices.ComVisible(true)]
public enum CustomErrorsModes
[<System.Runtime.InteropServices.ComVisible(true)>]
type CustomErrorsModes =
Public Enum CustomErrorsModes
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
On | 0 | All callers receive filtered exception information. |
Off | 1 | All callers receive complete exception information. |
RemoteOnly | 2 | Local callers receive complete exception information; remote callers receive filtered exception information. |
Remarks
Complete exception information includes the exact server exception and the server stack trace. Filtered information includes a standard remoting exception but no server stack trace.