NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlReader.TagNameIs (String, String)

Checks whether the current element has both the specified name and namespace.

[Visual Basic]
Overloads Public Function TagNameIs( _
   ByVal localName As String, _
   ByVal ns As String _
) As Boolean
[C#]
public bool TagNameIs(
   string localName,
   string ns
);
[C++]
public: bool TagNameIs(
   String* localName,
   String* ns
);
[JScript]
public function TagNameIs(
   localName : String,
   ns : String
) : Boolean;

Parameters

localName
[To be supplied.]
ns
[To be supplied.]

Return Value

true if the current element has both the specified name and namespace; otherwise, false.

See Also

XmlReader Class | XmlReader Members | System.NewXml Namespace | XmlReader.TagNameIs Overload List