update MEF to preview 9
[mcs.git] / class / System.ComponentModel.Composition / src / ComponentModel / System / ComponentModel / Composition / Hosting / INotifyComposablePartCatalogChanged.cs
blob4e5f8259631ddeb9ea33613fd4be5603c95c4d42
1 // -----------------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation. All rights reserved.
3 // -----------------------------------------------------------------------
4 using System;
5 using System.Collections.Generic;
6 using System.Linq;
7 using System.Text;
9 namespace System.ComponentModel.Composition.Hosting
11 /// <summary>
12 /// Notifications when a ComposablePartCatalog changes.
13 /// </summary>
14 public interface INotifyComposablePartCatalogChanged
16 event EventHandler<ComposablePartCatalogChangeEventArgs> Changed;
17 event EventHandler<ComposablePartCatalogChangeEventArgs> Changing;