//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI {
public interface ICallbackEventHandler {
///
/// Process the eventargs that this control wanted fired from an out-of-band callback
///
void RaiseCallbackEvent(string eventArgument);
///
/// Render the control for the callback event
///
string GetCallbackResult();
}
}