PropertyChangedEventHandler Delegate

Handles a property change event.

Namespace: Microsoft.SPOT
Assembly: Microsoft.SPOT.RPC (in microsoft.spot.rpc.dll)

Syntax

 public delegate void PropertyChangedEventHandler (
         Object sender,
         PropertyChangedEventArgs e
)

Parameters

  • sender
    The object whose property is changing.
  • e
    Information about the property change.

Remarks

By associating this delegate with a property, your program can receive a notification each time the property changes. The PropertyChangedEventArgs object that this delegate receives through the e parameter contains the name of the property, its value before the change, and its new value.

Version Information

Available in .NET Micro Framework version 2.0, 2.5

See Also

Reference

Microsoft.SPOT Namespace