25 references to GetValue
PresentationFramework (25)
src\Framework\System\Windows\Data\Binding.cs (12)
255return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 367get { return (string)GetValue(Feature.XPath, null); } 490get { return (IValueConverter)GetValue(Feature.Converter, null); } 501get { return GetValue(Feature.ConverterParameter, null); } 510get { return (CultureInfo)GetValue(Feature.Culture, null); } 520WeakReference<object> wr = (WeakReference<object>)GetValue(Feature.ObjectSource, null); 570get { return (RelativeSource)GetValue(Feature.RelativeSource, null); } 589get { return (string)GetValue(Feature.ElementSource, null); } 616get { return GetValue(Feature.AsyncState, null); } 650get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 703UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 800return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);
src\Framework\System\Windows\Data\BindingBase.cs (6)
104get { return GetValue(Feature.FallbackValue, DependencyProperty.UnsetValue); } 128get { return (string)GetValue(Feature.StringFormat, null); } 136get { return GetValue(Feature.TargetNullValue, DependencyProperty.UnsetValue); } 155get { return (string)GetValue(Feature.BindingGroupName, String.Empty); } 169get { return (int)GetValue(Feature.Delay, 0); } 540internal void CopyValue(Feature id, BindingBase clone) { if (HasValue(id)) { clone.SetValue(id, GetValue(id, null)); } }
src\Framework\System\Windows\Data\MultiBinding.cs (7)
215get { return (IMultiValueConverter)GetValue(Feature.Converter, null); } 226get { return GetValue(Feature.ConverterParameter, null); } 235get { return (CultureInfo)GetValue(Feature.Culture, null); } 251return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 278get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 375UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 428return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);