Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlSerializerFormatAttribute::SupportFaults Property

 

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

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property bool SupportFaults {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

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

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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft