XmlSerializerFormatAttribute.SupportFaults Property
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.
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.