3 writes to IsCoercedWithCurrentValue
WindowsBase (3)
Base\System\Windows\DependencyObject.cs (2)
1223newEntry.IsCoercedWithCurrentValue = preserveCurrentValue; 1919newEntry.IsCoercedWithCurrentValue = false; // clear flag only used for private communication
Base\System\Windows\EffectiveValueEntry.cs (1)
103IsCoercedWithCurrentValue = coerceWithCurrentValue;
12 references to IsCoercedWithCurrentValue
WindowsBase (12)
Base\System\Windows\DependencyObject.cs (9)
362if (entry.IsCoercedWithCurrentValue) 402entry.SetCoercedValue(value, null, true /* skipBaseValueChecks */, entry.IsCoercedWithCurrentValue); 1051object value = entry.IsCoercedWithCurrentValue ? entry.ModifiedValue.CoercedValue : entry.LocalValue; 1109if (entry.IsCoercedWithCurrentValue) 1681Debug.Assert(!(newEntry.IsCoerced && !newEntry.IsCoercedWithCurrentValue) && 1916newEntry.IsCoercedWithCurrentValue) 1989oldEntry.IsCoercedWithCurrentValue && 2118isCurrent = entry.IsCoercedWithCurrentValue; 2209object value = entry.IsCoercedWithCurrentValue ? entry.ModifiedValue.CoercedValue : entry.LocalValue;
Base\System\Windows\EffectiveValueEntry.cs (3)
95if (IsCoercedWithCurrentValue) 216if (IsCoercedWithCurrentValue) 377if (IsCoercedWithCurrentValue)