3 writes to IsInUpdate
PresentationFramework (3)
System\Windows\Data\BindingExpressionBase.cs (2)
1341IsInUpdate = true; // pretend to be in an update - as when this callback was posted 1343IsInUpdate = false;
System\Windows\Data\MultiBindingExpression.cs (1)
713IsInUpdate = false; // inhibit the "$10 bug" re-fetch if nothing actually updated
7 references to IsInUpdate
PresentationFramework (7)
System\Windows\Controls\TextBox.cs (1)
1633resetCaret = (beb != null) && beb.IsInUpdate && beb.IsInTransfer;
System\Windows\Data\BindingExpression.cs (3)
326if (IsTransferPending || IsInUpdate) 1487bool realTransfer = !(IsInUpdate && System.Windows.Controls.ItemsControl.EqualsEx(value, Value)); 2384if (!IsInUpdate && CanActivate)
System\Windows\Data\BindingExpressionBase.cs (2)
1306if (IsInUpdate && IsDynamic && StatusInternal == BindingStatusInternal.Active) 1426if (!IsInUpdate)
System\Windows\Data\MultiBindingExpression.cs (1)
1335bool realTransfer = !(IsInUpdate && ItemsControl.EqualsEx(value, Value));