FaultException Class
Represents a SOAP fault.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | FaultException() | Initializes a new instance of the FaultException class. |
![]() | FaultException(FaultReason^) | Initializes a new instance of the FaultException class using the specified reason. |
![]() | FaultException(FaultReason^, FaultCode^) | Initializes a new instance of the FaultException class using the specified reason and fault code. |
![]() | FaultException(FaultReason^, FaultCode^, String^) | Initializes a new instance of the FaultException class using the specified reason, fault code, and action value. |
![]() | FaultException(MessageFault^) | Initializes a new instance of the FaultException class using the specified message fault values. |
![]() | FaultException(MessageFault^, String^) | Initializes a new instance of the FaultException class using the specified message fault values and the provided action string. |
![]() | FaultException(SerializationInfo^, StreamingContext) | Initializes a new instance of the FaultException class using the specified serialization information and context when deserializing a stream into a FaultException object. |
![]() | FaultException(String^) | Initializes a new instance of the FaultException class with the specified fault reason. |
![]() | FaultException(String^, FaultCode^) | Initializes a new instance of the FaultException class using the specified reason and SOAP fault code. |
![]() | FaultException(String^, FaultCode^, String^) | Initializes a new instance of the FaultException class using the specified reason, fault code, and action value. |
| Name | Description | |
|---|---|---|
![]() | Action | Gets the value of the SOAP action for the fault message. |
![]() | Code | Gets the fault code for the SOAP fault. |
![]() | Data | Gets a collection of key/value pairs that provide additional user-defined information about the exception.(Inherited from Exception.) |
![]() | HelpLink | Gets or sets a link to the help file associated with this exception.(Inherited from Exception.) |
![]() | HResult | Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.(Inherited from Exception.) |
![]() | InnerException | |
![]() | Message | Gets the message for the exception.(Overrides Exception::Message.) |
![]() | Reason | Gets the FaultReason for the SOAP fault. |
![]() | Source | Gets or sets the name of the application or the object that causes the error.(Inherited from Exception.) |
![]() | StackTrace | Gets a string representation of the immediate frames on the call stack.(Inherited from Exception.) |
![]() | TargetSite | Gets the method that throws the current exception.(Inherited from Exception.) |
| Name | Description | |
|---|---|---|
![]() ![]() | CreateFault(MessageFault^, String^, array<Type^>^) | Returns a FaultException object from the specified message fault, action and an array of detail types. |
![]() ![]() | CreateFault(MessageFault^, array<Type^>^) | Returns a FaultException object from the specified message fault and an array of detail types. |
![]() | CreateMessageFault() | Returns a MessageFault object. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetBaseException() | |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetObjectData(SerializationInfo^, StreamingContext) | Implementation of the ISerializable::GetObjectData method that is called when the object is serialized into a stream.(Overrides Exception::GetObjectData(SerializationInfo^, StreamingContext).) |
![]() | GetType() | Gets the runtime type of the current instance.(Inherited from Exception.) |
![]() | MemberwiseClone() | |
![]() | ToString() | Creates and returns a string representation of the current exception.(Inherited from Exception.) |
| Name | Description | |
|---|---|---|
![]() | SerializeObjectState | Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception.(Inherited from Exception.) |
In a service, use the FaultException class to create an untyped fault to return to the client for debugging purposes.
In a client, catch FaultException objects to handle unknown or generic faults, such as those returned by a service with the IncludeExceptionDetailInFaults property set to true. Because FaultException extends CommunicationException, remember to catch any FaultException objects prior to catching CommunicationException objects if you want to catch them separately.
Note |
|---|
Duplex services can also catch FaultException objects returned from their interaction with a duplex client. |
In general, it is strongly recommended that you use the FaultContractAttribute to design your services to return strongly-typed SOAP faults (and not managed exception objects) for all fault cases in which you decide the client requires fault information. However, use the FaultException in the following situations:
To send SOAP faults from a service for debugging purposes.
To catch SOAP faults on a client when the faults are not part of the service contract.
Throw FaultException objects when you want the string to be passed to the constructor and retrieved by the client by calling the FaultException<TDetail>::ToString method. If you specify a fault contract of type System.ServiceModel::FaultException<TDetail> where the type parameter is System::String, the string value is available as the FaultException<TDetail>::Detail property and not by calling FaultException<TDetail>::ToString.
For details, see Specifying and Handling Faults in Contracts and Services.
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





