25 references to GetValue
PresentationFramework (25)
System\Windows\Data\Binding.cs (12)
242return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 354get { return (string)GetValue(Feature.XPath, null); } 477get { return (IValueConverter)GetValue(Feature.Converter, null); } 488get { return GetValue(Feature.ConverterParameter, null); } 497get { return (CultureInfo)GetValue(Feature.Culture, null); } 507WeakReference<object> wr = (WeakReference<object>)GetValue(Feature.ObjectSource, null); 557get { return (RelativeSource)GetValue(Feature.RelativeSource, null); } 576get { return (string)GetValue(Feature.ElementSource, null); } 603get { return GetValue(Feature.AsyncState, null); } 637get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 690UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 787return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);
System\Windows\Data\BindingBase.cs (6)
99get { return GetValue(Feature.FallbackValue, DependencyProperty.UnsetValue); } 123get { return (string)GetValue(Feature.StringFormat, null); } 131get { return GetValue(Feature.TargetNullValue, DependencyProperty.UnsetValue); } 150get { return (string)GetValue(Feature.BindingGroupName, String.Empty); } 164get { return (int)GetValue(Feature.Delay, 0); } 535internal void CopyValue(Feature id, BindingBase clone) { if (HasValue(id)) { clone.SetValue(id, GetValue(id, null)); } }
System\Windows\Data\MultiBinding.cs (7)
206get { return (IMultiValueConverter)GetValue(Feature.Converter, null); } 217get { return GetValue(Feature.ConverterParameter, null); } 226get { return (CultureInfo)GetValue(Feature.Culture, null); } 242return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 268get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 365UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 418return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);