only for RuBoard - do not distribute or recompile Previous Section Next Section
XPathNamespaceScope enum

System.Xml.XPath (system.xml.dll) serializable

This enumeration defines the namespace scope for certain XPathNavigator operations. All includes all namespaces within the scope of the current node (including the xmlns:xml namespace, whether defined explicitly or not). ExcludeXml includes all namespaces within the scope of the current node, except the xmlns:xml namespace. Local includes all locally defined namespaces within the scope of the current node.

public enum XPathNamespaceScope {
   All = 0,
   ExcludeXml = 1,
   Local = 2
}

Hierarchy

System.Objectfigs/U2192.gif System.ValueTypefigs/U2192.gif System.Enum(System.IComparable, System.IFormattable, System.IConvertible)figs/U2192.gif XPathNamespaceScope

Passed To

XPathNavigator.{MoveToFirstNamespace(), MoveToNextNamespace()}

only for RuBoard - do not distribute or recompile Previous Section Next Section