XmlSerializerFormatAttribute.SupportFaults Property

Definition

Gets or sets a value that indicates that the XmlSerializer should be used for reading and writing faults.

public:
 property bool SupportFaults { bool get(); void set(bool value); };
public bool SupportFaults { get; set; }
member this.SupportFaults : bool with get, set
Public Property SupportFaults As Boolean

Property Value

true if the XmlSerializer should be used for reading and writing faults; false if the DataContractSerializer should be used. The default is false.

Remarks

The default formatter for fault serialization is the DataContractSerializer. To use the XmlSerializer, set this property to true. Starting in .NET 4 the serializer set by the SupportFaults property will be used even if a custom behavior is set on the contract to which the XmlSerializerFormatAttribute is applied.

Applies to