SoapException.IsVersionMismatchFaultCode(XmlQualifiedName) Método
Definição
Retorna um valor que indica se o código de falha de SOAP é equivalente ao código de falha de SOAP VersionMismatch
, independentemente da versão do protocolo SOAP usada.Returns a value that indicates whether the SOAP fault code is equivalent to the VersionMismatch
SOAP fault code regardless of the version of the SOAP protocol used.
public:
static bool IsVersionMismatchFaultCode(System::Xml::XmlQualifiedName ^ code);
public static bool IsVersionMismatchFaultCode (System.Xml.XmlQualifiedName code);
static member IsVersionMismatchFaultCode : System.Xml.XmlQualifiedName -> bool
Public Shared Function IsVersionMismatchFaultCode (code As XmlQualifiedName) As Boolean
Parâmetros
- code
- XmlQualifiedName
Um XmlQualifiedName que contém um código de falha de SOAP.An XmlQualifiedName that contains a SOAP fault code.
Retornos
true
se code
é equivalente ao código de falha de SOAP VersionMismatch
; caso contrário, false
.true
if code
is equivalent to the VersionMismatch
SOAP fault code; otherwise, false
.
Comentários
Os destinatários de um SoapException podem usar esse método para determinar se a Code propriedade é funcionalmente equivalente ao VersionMismatch
código de falha SOAP definido em SOAP 1,1, independentemente da versão do protocolo SOAP usada.Recipients of a SoapException can use this method to determine whether the Code property is functionally equivalent to the VersionMismatch
SOAP fault code defined in SOAP 1.1 regardless of the version of the SOAP protocol used. As versões do protocolo SOAP posteriores a 1,1 podem usar nomes ou namespaces diferentes para o VersionMismatch
código de falha SOAP definido na versão 1,1 do SOAP, que é representada pelo SoapException.VersionMismatchFaultCode campo.Versions of the SOAP protocol later than 1.1 might use different names or namespaces for the VersionMismatch
SOAP fault code defined in SOAP version 1.1, which is represented by the SoapException.VersionMismatchFaultCode field. SOAP 1,2 nomeia o mesmo código de falha; no entanto, ele tem como escopo um namespace XML diferente e é representado pelo Soap12FaultCodes.VersionMismatchFaultCode campo.SOAP 1.2 names the fault code the same; however, it is scoped by a different XML namespace and is represented by the Soap12FaultCodes.VersionMismatchFaultCode field.