SoapException.IsServerFaultCode(XmlQualifiedName) Method
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.
Returns a value that indicates whether the SOAP fault code is equivalent to the Server
SOAP fault code regardless of the version of the SOAP protocol used.
public:
static bool IsServerFaultCode(System::Xml::XmlQualifiedName ^ code);
public static bool IsServerFaultCode (System.Xml.XmlQualifiedName code);
static member IsServerFaultCode : System.Xml.XmlQualifiedName -> bool
Public Shared Function IsServerFaultCode (code As XmlQualifiedName) As Boolean
Parameters
- code
- XmlQualifiedName
An XmlQualifiedName that contains a SOAP fault code.
Returns
true
if code
is equivalent to the Server
SOAP fault code; otherwise, false
.
Remarks
Recipients of a SoapException can use this method to determine whether the Code property is functionally equivalent to the Server
SOAP fault code defined in SOAP 1.1 regardless of the version of the SOAP protocol used. Versions of the SOAP protocol later than 1.1 might use different names or namespaces for the Server
SOAP fault code defined in SOAP version 1.1, which is represented by the ServerFaultCode field. SOAP 1.2 names the fault code Receiver
, which is represented by the Soap12FaultCodes.ReceiverFaultCode field.