Animatable.FreezeCore(Boolean) 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.
Makes this Animatable object unmodifiable or determines whether it can be made unmodifiable.
protected:
override bool FreezeCore(bool isChecking);
protected override bool FreezeCore (bool isChecking);
override this.FreezeCore : bool -> bool
Protected Overrides Function FreezeCore (isChecking As Boolean) As Boolean
Parameters
- isChecking
- Boolean
true
if this method should simply determine whether this instance can be frozen. false
if this instance should actually freeze itself when this method is called.
Returns
If isChecking
is true
, this method returns true
if this Animatable can be made unmodifiable, or false
if it cannot be made unmodifiable.
If isChecking
is false
, this method returns true
if the if this Animatable is now unmodifiable, or false
if it cannot be made unmodifiable, with the side effect of having begun to change the frozen status of this object.
Remarks
This method will return false
when HasAnimatedProperties is true
.
Do not call this method directly (except when calling base in an implementation). This method is called internally by CanFreeze (with isChecking
equal to true
) and Freeze (with isChecking
equal to false
).
Notes to Inheritors
Classes that derive from Animatable must override this method when the class contains data that is not stored using dependency properties.
A typical implementation would call the base implementation, then call the static Freeze() method on all Freezable typed properties that the class contains, returning true
only if all properties were frozen (or could have been frozen, in the case of passing through a false
value for isChecking
).