GetValueOverride Delegate

Definition

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

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.

Applies to