Initial commit
[mono.git] / mcs / class / referencesource / System / compmod / system / componentmodel / PropertyChangedEventHandler.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="PropertyChangedEventHandler.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 //------------------------------------------------------------------------------
6
7 namespace System.ComponentModel {
8
9     using System;
10     using System.Diagnostics;
11     using System.Security.Permissions;
12
13     /// <devdoc>
14     ///    <para>Represents the method that will handle the
15     ///    <see langword='PropertyChanged'/> event raised when a
16     ///       property is changed on a component.</para>
17     /// </devdoc>
18     [HostProtection(SharedState = true)]
19     public delegate void PropertyChangedEventHandler(object sender, PropertyChangedEventArgs e);
20 }