GetValueOverride Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Allows a custom override of the GetValue(DependencyProperty) logic associated with a dependency property that is defined on a dependency object.
public delegate System::Object ^ GetValueOverride(DependencyObject ^ d);
public delegate object GetValueOverride(DependencyObject d);
type GetValueOverride = delegate of DependencyObject -> obj
Public Delegate Function GetValueOverride(d As DependencyObject) As Object
Parameters
The DependencyProperty that targets the GetValue(DependencyProperty) method.
Return Value
An Object that represents the value of the designated DependencyProperty.
Remarks
Note
This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5.
The implementation of this delegate can be set on the GetValueOverride property of PropertyMetadata while calling Register or RegisterAttached.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |