DependencyObject.DependencyObjectType Property
Gets the DependencyObjectType that wraps the CLR type of this instance.
Namespace: System.Windows
Assembly: WindowsBase (in WindowsBase.dll)
Property Value
Type: System.Windows.DependencyObjectTypeA DependencyObjectType that wraps the CLR type of this instance.
This property is useful if an object that is returned from a method has a return value type of DependencyObject and you want to perform property system specific operations on it depending on its type. For example it is more efficient to call GetMetadata(DependencyObjectType) using the DependencyObjectType rather than the CLR type. DependencyObjectType facilitates faster lookup.
In the following pseudocode example, MySubClass anticipates that additional derived classes might change the default value of the MyCustom dependency property. The class implements a default constructor that can determine the actual derived class by taking advantage of polymorphism on the DependencyObjectType value whenever that constructor is used as a derived class instantiator.
public DOClass() : base()
{
__customPropertyCache = (CustomDP)
CustomDPProperty.GetMetadata(DependencyObjectType).DefaultValue;
}
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.