FreezableCollection<T>.GetAsFrozenCore(Freezable) Method

Definition

Makes this instance a frozen clone of the specified FreezableCollection<T> using base (non-animated) property values.

protected:
 override void GetAsFrozenCore(System::Windows::Freezable ^ source);
protected override void GetAsFrozenCore (System.Windows.Freezable source);
override this.GetAsFrozenCore : System.Windows.Freezable -> unit
Protected Overrides Sub GetAsFrozenCore (source As Freezable)

Parameters

source
Freezable

The FreezableCollection<T> to copy.

Remarks

This method is called by GetAsFrozen and should not be called directly from your code, except when calling the base implementation while overriding this method. To create a frozen copy of the current object, call GetAsFrozen instead of calling this method directly.

Notes to Inheritors

For information about when to override this method, see GetAsFrozenCore(Freezable).

Applies to

See also