//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Security.Permissions;
///
/// Represents the method that will handle the
/// event raised when adding elements to or removing elements from a
/// collection.
///
[HostProtection(SharedState = true)]
public delegate void CollectionChangeEventHandler(object sender, CollectionChangeEventArgs e);
}