Skip to main content
.NET Framework Class Library
Freezable..::.CreateInstanceCore Method

When implemented in a derived class, creates a new instance of the Freezable derived class.

Namespace: System.Windows
Assembly: WindowsBase (in WindowsBase.dll)
Syntax
Protected MustOverride Function CreateInstanceCore As Freezable
protected abstract Freezable CreateInstanceCore()
protected:
virtual Freezable^ CreateInstanceCore() abstract
abstract CreateInstanceCore : unit -> Freezable 

Return Value

Type: System.Windows..::.Freezable
The new instance.
Remarks

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

Notes to Inheritors

Every Freezable derived class must implement this method. A typical implementation is to simply call the default constructor and return the result.

Examples

The following example shows a typical implementation of CreateInstanceCore.


	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



public class MyFreezable : Freezable
{
    // Typical implementation of CreateInstanceCore
    protected override Freezable CreateInstanceCore()
    {

        return new MyFreezable();      
    }


    // ...
    // Other code for the MyFreezableClass.
    // ...


}


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.