BindingExpression.UpdateTarget Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Forces a data transfer from the binding source property to the binding target property.
public:
override void UpdateTarget();
public override void UpdateTarget ();
override this.UpdateTarget : unit -> unit
Public Overrides Sub UpdateTarget ()
Exceptions
The binding has been detached from its target.
Remarks
This method enables you to force a data transfer from the source property to the target property. If your source object implements a proper property-changed notification mechanism such as INotifyPropertyChanged, target updates happen automatically. However, you have the option to use this method to update the target property explicitly in cases where your source object does not provide the proper property-changed notifications. You can also use this method if your application needs to update the target properties periodically.