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!

XmlNavigator.MoveToAttribute (String, String)

Move to the attribute with matching name and namespace.

[Visual Basic]
Overloads MustOverride Public Function MoveToAttribute( _
   ByVal localName As String, _
   ByVal namespaceURI As String _
) As Boolean
[C#]
public abstract bool MoveToAttribute(
   string localName,
   string namespaceURI
);
[C++]
public: virtual bool MoveToAttribute(
   String* localName,
   String* namespaceURI
) = 0;
[JScript]
public abstract function MoveToAttribute(
   localName : String,
   namespaceURI : String
) : Boolean;

Parameters

localName
[To be supplied.]
namespaceURI
[To be supplied.]

Return Value

true if the attribute is found; otherwise, false. If false, the XmlNavigator's position does not change.

Remarks

If you are positioned on an attribute, this method will do an implicit MoveToElement before processing this method.

See Also

XmlNavigator Class | XmlNavigator Members | System.NewXml Namespace | XmlNavigator.MoveToAttribute Overload List