25 references to GetValue
PresentationFramework (25)
System\Windows\Data\Binding.cs (12)
224return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 336get { return (string)GetValue(Feature.XPath, null); } 459get { return (IValueConverter)GetValue(Feature.Converter, null); } 470get { return GetValue(Feature.ConverterParameter, null); } 479get { return (CultureInfo)GetValue(Feature.Culture, null); } 489WeakReference<object> wr = (WeakReference<object>)GetValue(Feature.ObjectSource, null); 539get { return (RelativeSource)GetValue(Feature.RelativeSource, null); } 558get { return (string)GetValue(Feature.ElementSource, null); } 585get { return GetValue(Feature.AsyncState, null); } 619get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 672UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 769return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);
System\Windows\Data\BindingBase.cs (6)
98get { return GetValue(Feature.FallbackValue, DependencyProperty.UnsetValue); } 122get { return (string)GetValue(Feature.StringFormat, null); } 130get { return GetValue(Feature.TargetNullValue, DependencyProperty.UnsetValue); } 149get { return (string)GetValue(Feature.BindingGroupName, String.Empty); } 163get { return (int)GetValue(Feature.Delay, 0); } 534internal void CopyValue(Feature id, BindingBase clone) { if (HasValue(id)) { clone.SetValue(id, GetValue(id, null)); } }
System\Windows\Data\MultiBinding.cs (7)
205get { return (IMultiValueConverter)GetValue(Feature.Converter, null); } 216get { return GetValue(Feature.ConverterParameter, null); } 225get { return (CultureInfo)GetValue(Feature.Culture, null); } 241return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null); 267get { return (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); } 364UpdateSourceExceptionFilterCallback callback = (UpdateSourceExceptionFilterCallback)GetValue(Feature.ExceptionFilterCallback, null); 417return (ValidationRuleCollection)GetValue(Feature.ValidationRules, null);