Freezable Methods
.NET Framework 3.0
(see also
Protected Methods
)
Top
| Name | Description | |
|---|---|---|
| CheckAccess | Determines whether the calling thread has access to this DispatcherObject. (inherited from DispatcherObject) |
| ClearValue | Overloaded. Clears the local value of a property. (inherited from DependencyObject) |
| Clone | Creates a modifiable clone of this Freezable, making deep copies of this object's values. When copying this object's dependency properties, this method copies expressions (but they might no longer resolve) but not animations or their current values. |
| CloneCurrentValue | Creates a modifiable clone (deep copy) of this Freezable using its current values. |
| CoerceValue | Coerces the value of the specified dependency property. This is accomplished by invoking any CoerceValueCallback function specified in property metadata for the property on this type. (inherited from DependencyObject) |
| Equals | Overloaded. Determines whether a provided DependencyObject is equivalent to the current DependencyObject. (inherited from DependencyObject) |
| Freeze | Overloaded. Makes a Freezable unmodifiable and sets its IsFrozen property to true, or determines whether the specified Freezable can be made unmodifiable. |
| GetAsFrozen | Creates a frozen copy of this Freezable , using base (non-animated) property values. Because the copy is frozen, any frozen sub-objects are copied by reference. |
| GetCurrentValueAsFrozen | Creates a frozen copy of this Freezable , using current property values. Because the copy is frozen, any frozen sub-objects are copied by reference. |
| GetHashCode | Gets a hash code for this DependencyObject. (inherited from DependencyObject) |
| GetLocalValueEnumerator | Creates a specialized enumerator for determining which dependency properties have locally set values on this DependencyObject. (inherited from DependencyObject) |
| GetType | Gets the Type of the current instance. (inherited from Object) |
| GetValue | Returns the current effective value of a dependency property on this instance of a DependencyObject. (inherited from DependencyObject) |
| InvalidateProperty | Re-evaluates the effective value for the specified dependency property (inherited from DependencyObject) |
| ReadLocalValue | Returns the local value of a dependency property, if it exists. (inherited from DependencyObject) |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (inherited from Object) |
| SetValue | Overloaded. Sets the local value of a dependency property. (inherited from DependencyObject) |
| ToString | Returns a String that represents the current Object. (inherited from Object) |
| VerifyAccess | Enforces that the calling thread has access to this DispatcherObject. (inherited from DispatcherObject) |
| Name | Description | |
|---|---|---|
| CloneCore | Makes this instance a clone (deep copy) of the specified Freezable using base (non-animated) property values. |
| CloneCurrentValueCore | Makes this instance a modifiable clone (deep copy) of the specified Freezable using current property values. |
| CreateInstance | Initializes a new instance of the Freezable class. |
| CreateInstanceCore | When implemented in a derived class, creates a new instance of that Freezable subclass. |
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (inherited from Object) |
| Freeze | Overloaded. Makes a Freezable unmodifiable and sets its IsFrozen property to true, or determines whether the specified Freezable can be made unmodifiable. |
| FreezeCore | Makes this Freezable object unmodifiable or determines whether it can be made unmodifiable. |
| GetAsFrozenCore | Makes this instance a frozen clone of the specified Freezable using base (non-animated) property values. |
| GetCurrentValueAsFrozenCore | Makes this instance a frozen clone of the specified Freezable. If this object has animated dependency properties, their current animated values are copied. |
| MemberwiseClone | Creates a shallow copy of the current Object. (inherited from Object) |
| OnChanged | Called when the current Freezable object is modified. |
| OnFreezablePropertyChanged | Overloaded. Ensures that appropriate context pointers are established for a data member of type DependencyObject that has just been modified. |
| OnPropertyChanged | Overridden. Overrides the DependencyObject implementation of OnPropertyChanged to also invoke any Changed handlers in response to a dependency property of type Freezable changing. |
| ReadPreamble | Ensures that this Freezable is being accessed from a valid thread. Implementers of Freezable must call this method at the beginning of any API that reads data members that are not dependency properties. |
| ShouldSerializeProperty | Returns a value that indicates whether serialization processes should serialize the value for the provided dependency property. (inherited from DependencyObject) |
| WritePostscript | Raises the Changed event for this Freezable and invokes its OnChanged method. Classes that derive from Freezable should call this method at the end of any API that modifies class members that are not stored as dependency properties. |
| WritePreamble | Verifies that the Freezable is not frozen and that it is being accessed from a valid threading context. Freezable implementers should call this method at the beginning of any API that writes to data members that are not dependency properties. |