Observable.ClearChanged 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.
Indicates that this object has no longer changed, or that it has
already notified all of its observers of its most recent change,
so that the hasChanged
method will now return false
.
[Android.Runtime.Register("clearChanged", "()V", "GetClearChangedHandler")]
protected virtual void ClearChanged ();
[<Android.Runtime.Register("clearChanged", "()V", "GetClearChangedHandler")>]
abstract member ClearChanged : unit -> unit
override this.ClearChanged : unit -> unit
- Attributes
Remarks
Indicates that this object has no longer changed, or that it has already notified all of its observers of its most recent change, so that the hasChanged
method will now return false
. This method is called automatically by the notifyObservers
methods.
Java documentation for java.util.Observable.clearChanged()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.