1 //------------------------------------------------------------------------------
2 // <copyright file="ITransformerConfigurationControl.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI.WebControls.WebParts {
8 
9     public interface ITransformerConfigurationControl {
10 
11         event EventHandler Cancelled;
12 
13         event EventHandler Succeeded;
14     }
15 }
16