1 out of 5 rated this helpful - Rate this topic

FaultException Class

Represents a SOAP fault.

Namespace:  System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
[SerializableAttribute]
public class FaultException : CommunicationException

The FaultException type exposes the following members.

  Name Description
Public method Supported by Portable Class Library FaultException() Initializes a new instance of the FaultException class.
Public method FaultException(FaultReason) Initializes a new instance of the FaultException class using the specified reason.
Public method FaultException(MessageFault) Initializes a new instance of the FaultException class using the specified message fault values.
Public method FaultException(String) Initializes a new instance of the FaultException class with the specified fault reason.
Public method FaultException(FaultReason, FaultCode) Initializes a new instance of the FaultException class using the specified reason and fault code.
Public method Supported by Portable Class Library FaultException(MessageFault, String) Initializes a new instance of the FaultException class using the specified message fault values and the provided action string.
Protected method 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.
Public method FaultException(String, FaultCode) Initializes a new instance of the FaultException class using the specified reason and SOAP fault code.
Public method Supported by Portable Class Library FaultException(FaultReason, FaultCode, String) Initializes a new instance of the FaultException class using the specified reason, fault code, and action value.
Public method FaultException(String, FaultCode, String) Initializes a new instance of the FaultException class using the specified reason, fault code, and action value.
Top
  Name Description
Public property Supported by Portable Class Library Action Gets the value of the SOAP action for the fault message.
Public property Supported by Portable Class Library Code Gets the fault code for the SOAP fault.
Public property Data Gets a collection of key/value pairs that provide additional user-defined information about the exception. (Inherited from Exception.)
Public property HelpLink Gets or sets a link to the help file associated with this exception. (Inherited from Exception.)
Protected property Supported by Portable Class Library HResult Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception. (Inherited from Exception.)
Public property Supported by Portable Class Library InnerException Gets the Exception instance that caused the current exception. (Inherited from Exception.)
Public property Supported by Portable Class Library Message Gets the message for the exception. (Overrides Exception.Message.)
Public property Supported by Portable Class Library Reason Gets the FaultReason for the SOAP fault.
Public property Source Gets or sets the name of the application or the object that causes the error. (Inherited from Exception.)
Public property Supported by Portable Class Library StackTrace Gets a string representation of the immediate frames on the call stack. (Inherited from Exception.)
Public property TargetSite Gets the method that throws the current exception. (Inherited from Exception.)
Top
  Name Description
Public method Static member Supported by Portable Class Library CreateFault(MessageFault, Type[]) Returns a FaultException object from the specified message fault and an array of detail types.
Public method Static member Supported by Portable Class Library CreateFault(MessageFault, String, Type[]) Returns a FaultException object from the specified message fault, action and an array of detail types.
Public method Supported by Portable Class Library CreateMessageFault Returns a MessageFault object.
Public method Supported by Portable Class Library Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by Portable Class Library Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by Portable Class Library GetBaseException When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions. (Inherited from Exception.)
Public method Supported by Portable Class Library GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetObjectData Implementation of the ISerializable.GetObjectData method that is called when the object is serialized into a stream. (Overrides Exception.GetObjectData(SerializationInfo, StreamingContext).)
Public method GetType Gets the runtime type of the current instance. (Inherited from Exception.)
Protected method Supported by Portable Class Library MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by Portable Class Library ToString Creates and returns a string representation of the current exception. (Inherited from Exception.)
Top
  Name Description
Protected event SerializeObjectState Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception. (Inherited from Exception.)
Top

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 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 Handling Faults in Windows Communication Foundation Contracts.

The following code example shows the use of a try/catch block to catch and handle FaultException objects thrown from a service. This often occurs when debugging is turned on in the service application.


<system.serviceModel>
  <behaviors>
    <serviceBehaviors>
      <behavior>
        <serviceMetadata httpGetEnabled="true"/>
        <serviceDebug includeExceptionDetailInFaults="false"/>
        <!-- Add the greetingFaultBehavior -->
        <greetingFaultBehavior />
      </behavior>
    </serviceBehaviors>
  </behaviors>
  <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  <!-- Register the class that implements the configuration element -->
  <extensions>
    <behaviorExtensions>
      <add
        name="greetingFaultBehavior"
        type="GreetingService.GreetingFaultBehaviorExtensionElement, GreetingService, Version=1.0.0.0, Culture=neutral"
      />
    </behaviorExtensions>
  </extensions>
</system.serviceModel>


.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
C# Example incorrect?
The C# example doesn't seem to be correct in this article?? Looks lie XML, not C#.
Incorrect wcf proxy closing in sample code

In FaultException<GreetingFault> handler, Abort() method is used, which is incorrect as it won't close session on server. FaultException<> does not turn proxy into faulted state, thus Close() method must be called. Test this with wsHttpBinding and low maxSessions value.

More details here http://www.vasylevskyi.com/2010/11/correct-wcf-client-proxy-closing.html