//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; /// /// Represents the method that will handle the /// event raised when a /// property is changed on a component. /// #if !SILVERLIGHT [HostProtection(SharedState = true)] #endif public delegate void PropertyChangedEventHandler(object sender, PropertyChangedEventArgs e); }