FreezableCollection<T>.CreateInstanceCore Method

Definition

Creates a new instance of the FreezableCollection<T>.

protected:
 override System::Windows::Freezable ^ CreateInstanceCore();
protected override System.Windows.Freezable CreateInstanceCore ();
override this.CreateInstanceCore : unit -> System.Windows.Freezable
Protected Overrides Function CreateInstanceCore () As Freezable

Returns

The new instance.

Examples

The following example shows a typical implementation of CreateInstanceCore.

public class MyFreezable : Freezable
{
    // Typical implementation of CreateInstanceCore
    protected override Freezable CreateInstanceCore()
    {
    
        return new MyFreezable();      
    }

    // ...
    // Other code for the MyFreezableClass.
    // ...
}
Public Class MyFreezable
    Inherits Freezable
    ' Typical implementation of CreateInstanceCore
    Protected Overrides Function CreateInstanceCore() As Freezable

        Return New MyFreezable()
    End Function


    ' ...
    ' Other code for the MyFreezableClass.
    ' ...


End Class

Remarks

Do not call this method directly (except when calling base in an implementation). This method is called internally by CreateInstance, whenever a new instance of the Freezable is created.

Notes to Inheritors

Every Freezable subclass must implement this method. Typical implementation is to simply call the class parameterless constructor and return the result.

Applies to

See also