25 references to GetValue
PresentationFramework (25)
System\Windows\Data\Binding.cs (12)
250return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 362get { return (string)GetValue(Feature.XPath, null); } 485get { return (IValueConverter)GetValue(Feature.Converter, null); } 496get { return GetValue(Feature.ConverterParameter, null); } 505get { return (CultureInfo)GetValue(Feature.Culture, null); } 515WeakReference<object> wr = (WeakReference<object>)GetValue(Feature.ObjectSource, null); 565get { return (RelativeSource)GetValue(Feature.RelativeSource, null); } 584get { return (string)GetValue(Feature.ElementSource, null); } 611get { return GetValue(Feature.AsyncState, null); } 645get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 698UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 795return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);
System\Windows\Data\BindingBase.cs (6)
101get { return GetValue(Feature.FallbackValue, DependencyProperty.UnsetValue); } 125get { return (string)GetValue(Feature.StringFormat, null); } 133get { return GetValue(Feature.TargetNullValue, DependencyProperty.UnsetValue); } 152get { return (string)GetValue(Feature.BindingGroupName, String.Empty); } 166get { return (int)GetValue(Feature.Delay, 0); } 537internal void CopyValue(Feature id, BindingBase clone) { if (HasValue(id)) { clone.SetValue(id, GetValue(id, null)); } }
System\Windows\Data\MultiBinding.cs (7)
211get { return (IMultiValueConverter)GetValue(Feature.Converter, null); } 222get { return GetValue(Feature.ConverterParameter, null); } 231get { return (CultureInfo)GetValue(Feature.Culture, null); } 247return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 273get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 370UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 423return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);