/// <summary>Retrieves the <see cref="T:System.Windows.Data.MultiBinding" /> object that is set on the specified property.</summary> /// <param name="target">The object where <paramref name="dp" /> is.</param> /// <param name="dp">The binding target property from which to retrieve the binding.</param> /// <returns>The <see cref="T:System.Windows.Data.MultiBinding" /> object set on the given property or <see langword="null" /> if no <see cref="T:System.Windows.Data.MultiBinding" /> object has been set.</returns> /// <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> and <paramref name="dp" /> parameters cannot be null.</exception> // Token: 0x06001A2E RID: 6702 RVA: 0x0007D11C File Offset: 0x0007B31C public static MultiBinding GetMultiBinding(DependencyObject target, DependencyProperty dp) { return(BindingOperations.GetBindingBase(target, dp) as MultiBinding); }
/// <summary>Retrieves the <see cref="T:System.Windows.Data.PriorityBinding" /> object that is set on the specified property.</summary> /// <param name="target">The object where <paramref name="dp" /> is.</param> /// <param name="dp">The binding target property from which to retrieve the binding.</param> /// <returns>The <see cref="T:System.Windows.Data.PriorityBinding" /> object set on the given property or <see langword="null" /> if no <see cref="T:System.Windows.Data.PriorityBinding" /> object has been set.</returns> /// <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> and <paramref name="dp" /> parameters cannot be null.</exception> // Token: 0x06001A2D RID: 6701 RVA: 0x0007D10E File Offset: 0x0007B30E public static PriorityBinding GetPriorityBinding(DependencyObject target, DependencyProperty dp) { return(BindingOperations.GetBindingBase(target, dp) as PriorityBinding); }