//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI {
///
///
/// Allows the ControlSerializer to get to the ControlBuilder for a Control.
///
public interface IControlBuilderAccessor {
ControlBuilder ControlBuilder {
get;
}
}
}