ExceptionDetail Class
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.
Represents fault detail information.
public ref class ExceptionDetail
[System.Runtime.Serialization.DataContract]
public class ExceptionDetail
[<System.Runtime.Serialization.DataContract>]
type ExceptionDetail = class
Public Class ExceptionDetail
- Inheritance
-
ExceptionDetail
- Attributes
Remarks
The ExceptionDetail class is the type parameter used as the fault detail object when a System.ServiceModel.FaultException is sent by a service as a result of setting the ServiceBehaviorAttribute.IncludeExceptionDetailInFaults or the ServiceDebugBehavior.IncludeExceptionDetailInFaults property to true
.
To send a ExceptionDetail object the type must be serializable. For more information on serialization options, see Specifying Data Transfer in Service Contracts.
Constructors
ExceptionDetail(Exception) |
Initializes a new instance of the ExceptionDetail class from the exception. |
Properties
HelpLink |
Gets or sets the help link from the exception passed to the constructor. |
InnerException |
Gets or sets the ExceptionDetail object that represents the inner exception. |
Message |
Gets or sets the message from the exception passed to the constructor. |
StackTrace |
Gets or sets the stack trace information from the exception passed to the constructor. |
Type |
Gets or sets the type string for the exception passed to the constructor. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns the exception detail information for the exception passed to the constructor. |