When implemented in a derived class, creates a new instance of the Freezable derived class.
Assembly: WindowsBase (in WindowsBase.dll)
Syntax
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 InheritorsEvery 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.
// ...
}
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. See Also