//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI {
using System.Collections.Specialized;
public interface IBindableControl {
///
/// Retrives the values of all control properties with two-way bindings.
///
void ExtractValues(IOrderedDictionary dictionary);
}
}