SoapFaultSubCode Class

Definition

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.

public ref class SoapFaultSubCode
[System.Serializable]
public class SoapFaultSubCode
[<System.Serializable>]
type SoapFaultSubCode = class
Public Class SoapFaultSubCode
Inheritance
SoapFaultSubCode
Attributes

Remarks

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 a Code property that represents the Code element and a SubCode property that represents the Subcode element.

Constructors

SoapFaultSubCode(XmlQualifiedName)

Initializes a new instance of the SoapFaultSubCode class and 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.

Properties

Code

Gets the application specific error code in the form of an XML qualified name.

SubCode

Gets additional error information contained within a child Subcode element.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(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)

Applies to