Initial commit
[mono.git] / mcs / class / referencesource / System / compmod / system / componentmodel / ListChangedEventHandler.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="ListChangedEventHandler.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 //------------------------------------------------------------------------------
6
7 namespace System.ComponentModel {
8     using System.Security.Permissions;
9
10     /// <devdoc>
11     ///    <para>[To be supplied.]</para>
12     /// </devdoc>
13     [HostProtection(SharedState = true)]
14     public delegate void ListChangedEventHandler(object sender, ListChangedEventArgs e);
15
16 }