1 //------------------------------------------------------------------------------
2 // <copyright file="ICallbackEventHandler.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI {
8     public interface ICallbackEventHandler {
9 
10         /// <devdoc>
11         /// Process the eventargs that this control wanted fired from an out-of-band callback
12         /// </devdoc>
RaiseCallbackEvent(string eventArgument)13         void RaiseCallbackEvent(string eventArgument);
14 
15         /// <devdoc>
16         /// Render the control for the callback event
17         /// </devdoc>
GetCallbackResult()18         string GetCallbackResult();
19     }
20 }
21