Binding.GetXmlNamespaceManager(DependencyObject) Method

Definition

Returns an XML namespace manager object used by the binding attached to the specified object.

public:
 static System::Xml::XmlNamespaceManager ^ GetXmlNamespaceManager(System::Windows::DependencyObject ^ target);
public static System.Xml.XmlNamespaceManager GetXmlNamespaceManager (System.Windows.DependencyObject target);
static member GetXmlNamespaceManager : System.Windows.DependencyObject -> System.Xml.XmlNamespaceManager
Public Shared Function GetXmlNamespaceManager (target As DependencyObject) As XmlNamespaceManager

Parameters

target
DependencyObject

The object from which to get namespace information.

Returns

A returned object used for viewing XML namespaces that relate to the binding on the passed object element. This object should be cast as XmlNamespaceManager.

Exceptions

The target parameter cannot be null.

Remarks

This method supports attached property usage for the XmlNamespaceManager attached property.

XML namespace managers are relevant only if the data in the binding came from an XML binding source (XmlDataProvider object).

If a namespace manager was not specifically applied either in the original data source creation or by subsequently calling SetXmlNamespaceManager on the binding, then this method will return null.

This method will always return null if the data behind the binding is not XML.

Applies to