|
//------------------------------------------------------------------------------
// <copyright file="ListChangedEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.Security.Permissions;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[HostProtection(SharedState = true)]
public delegate void ListChangedEventHandler(object sender, ListChangedEventArgs e);
}
|