SoapFaultSubCode Class
Represents the contents of the optional Subcode element of a SOAP fault when SOAP version 1.2 is used to communicate between a client and an XML Web service.
Assembly: System.Web.Services (in System.Web.Services.dll)
The SoapFaultSubCode type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | SoapFaultSubCode(XmlQualifiedName) | Initializes a new instance of the SoapFaultSubcode class sets the application specific error code. |
![]() | SoapFaultSubCode(XmlQualifiedName, SoapFaultSubCode) | Initializes a new instance of the SoapFaultSubcode class setting the application specific error code and additional error information. |
| Name | Description | |
|---|---|---|
![]() | 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.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
A SOAP 1.2 fault contains a Code element and among other things an optional Subcode element. The Code element specifies the type of error that occurred using a limited number of pre-defined error codes specified by the SOAP protocol, whereas the Subcode element allows the sender of the SOAP fault to provide an application specific error code. This class represents the contents of the Subcode element.
XML Web services return a SOAP fault by throwing a SoapException and.NET clients receive a SOAP fault by catching a SoapException. A SoapException has the Code property representing the Code element and the Subcode() property representing the Subcode element.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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.


