//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI {
using System;
///
/// Allows designer functionality to access information about a UserControl, that is
/// applicable at design-time only.
///
///
public interface IUserControlDesignerAccessor {
string InnerText {
get;
set;
}
string TagName {
get;
set;
}
}
}