XmlQueryRuntime.MatchesXmlType Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Devuelve true
si el tipo del elemento especificado coincide con el tipo XML indicado.
Sobrecargas
MatchesXmlType(IList<XPathItem>, Int32) |
Devuelve |
MatchesXmlType(IList<XPathItem>, XmlTypeCode) |
Determina si el tipo de la secuencia especificada es un subtipo del tipo singleton especificado. |
MatchesXmlType(XPathItem, Int32) |
Devuelve |
MatchesXmlType(XPathItem, XmlTypeCode) |
Devuelve |
MatchesXmlType(IList<XPathItem>, Int32)
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
Devuelve true
si el tipo de cada elemento de la secuencia especificada coincide con el tipo XML identificado por el índice especificado.
public:
bool MatchesXmlType(System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ seq, int indexType);
public bool MatchesXmlType (System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, int indexType);
member this.MatchesXmlType : System.Collections.Generic.IList<System.Xml.XPath.XPathItem> * int -> bool
Public Function MatchesXmlType (seq As IList(Of XPathItem), indexType As Integer) As Boolean
Parámetros
- indexType
- Int32
Índice.
Devoluciones
Es true
si el tipo de seq
es un subtipo de indexType
; de lo contrario, es false
.
Se aplica a
MatchesXmlType(IList<XPathItem>, XmlTypeCode)
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
Determina si el tipo de la secuencia especificada es un subtipo del tipo singleton especificado.
public:
bool MatchesXmlType(System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ seq, System::Xml::Schema::XmlTypeCode code);
public bool MatchesXmlType (System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, System.Xml.Schema.XmlTypeCode code);
member this.MatchesXmlType : System.Collections.Generic.IList<System.Xml.XPath.XPathItem> * System.Xml.Schema.XmlTypeCode -> bool
Public Function MatchesXmlType (seq As IList(Of XPathItem), code As XmlTypeCode) As Boolean
Parámetros
- code
- XmlTypeCode
Tipo singleton.
Devoluciones
Es true
si el tipo de seq
es un subtipo del tipo especificado por code
; de lo contrario, es false
.
Se aplica a
MatchesXmlType(XPathItem, Int32)
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
Devuelve true
si el tipo del objeto XPathItem especificado coincide con el tipo XML indicado.
public:
bool MatchesXmlType(System::Xml::XPath::XPathItem ^ item, int indexType);
public bool MatchesXmlType (System.Xml.XPath.XPathItem item, int indexType);
member this.MatchesXmlType : System.Xml.XPath.XPathItem * int -> bool
Public Function MatchesXmlType (item As XPathItem, indexType As Integer) As Boolean
Parámetros
- indexType
- Int32
Índice de la matriz de tipos XML.
Devoluciones
Es true
si el tipo de la clase XPathItem especificada coincide con el tipo XML indicado; de lo contrario, es false
.
Se aplica a
MatchesXmlType(XPathItem, XmlTypeCode)
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
- Source:
- XmlQueryRuntime.cs
Devuelve true
si el tipo del objeto XPathItem es un subtipo de un tipo identificado por la enumeración XmlTypeCode especificada.
public:
bool MatchesXmlType(System::Xml::XPath::XPathItem ^ item, System::Xml::Schema::XmlTypeCode code);
public bool MatchesXmlType (System.Xml.XPath.XPathItem item, System.Xml.Schema.XmlTypeCode code);
member this.MatchesXmlType : System.Xml.XPath.XPathItem * System.Xml.Schema.XmlTypeCode -> bool
Public Function MatchesXmlType (item As XPathItem, code As XmlTypeCode) As Boolean
Parámetros
- code
- XmlTypeCode
Instancia de la clase XmlTypeCode.
Devoluciones
true
, si el tipo del objeto XPathItem es un subtipo de un tipo identificado por el elemento XmlTypeCode especificado; de lo contrario, false
.