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.LookupPrefix

Looks up the prefix for the given namespace URI as defined higher up in the tree.

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

Parameters

namespaceURI
[To be supplied.]

Return Value

The prefix atomized string. Or a null reference (in Visual Basic Nothing) if not found.

See Also

XmlNavigator Class | XmlNavigator Members | System.NewXml Namespace