Share via


PropertyValueChangedEventHandler<T> Delegate

Defines a property changed delegate over a specific type.

Namespace:  Microsoft.Practices.EnterpriseLibrary.Configuration.Design.ViewModel
Assembly:  Microsoft.Practices.EnterpriseLibrary.Configuration.DesignTime (in Microsoft.Practices.EnterpriseLibrary.Configuration.DesignTime.dll)

Syntax

'Declaration
Public Delegate Sub PropertyValueChangedEventHandler(Of T) ( _
    sender As Object, _
    e As PropertyValueChangedEventArgs(Of T) _
)
public delegate void PropertyValueChangedEventHandler<T>(
    Object sender,
    PropertyValueChangedEventArgs<T> e
)
generic<typename T>
public delegate void PropertyValueChangedEventHandler(
    Object^ sender, 
    PropertyValueChangedEventArgs<T>^ e
)
JScript does not support generic types or methods.

Parameters

  • sender
    Type: System.Object
    The invoker of the property changed value.

Type Parameters

  • T
    The property type for the property changed handler.

See Also

Microsoft.Practices.EnterpriseLibrary.Configuration.Design.ViewModel Namespace