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)
| Name | Description | |
|---|---|---|
![]() | SoapFaultSubCode(XmlQualifiedName) | Initializes a new instance of the T:System.Web.Services.Protocols.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 the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | 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 P:System.Web.Services.Protocols.SoapException.Subcode property representing the Subcode element.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


