BindingOperations.GetBindingBase(DependencyObject, DependencyProperty) Method

Definition

Retrieves the BindingBase object that is set on the specified property.

public:
 static System::Windows::Data::BindingBase ^ GetBindingBase(System::Windows::DependencyObject ^ target, System::Windows::DependencyProperty ^ dp);
public static System.Windows.Data.BindingBase GetBindingBase (System.Windows.DependencyObject target, System.Windows.DependencyProperty dp);
static member GetBindingBase : System.Windows.DependencyObject * System.Windows.DependencyProperty -> System.Windows.Data.BindingBase
Public Shared Function GetBindingBase (target As DependencyObject, dp As DependencyProperty) As BindingBase

Parameters

target
DependencyObject

The object where dp is.

dp
DependencyProperty

The binding target property from which to retrieve the BindingBase object.

Returns

The BindingBase object that is set on the given property or null if no binding object has been set.

Exceptions

The target and dp parameters cannot be null.

Remarks

The BindingBase class is the common base class for the Binding, PriorityBinding, and MultiBinding classes. You can use the GetBinding, GetPriorityBinding, and GetMultiBinding methods if you know in advance the type of binding that is set on the property.

Applies to

See also