1 //------------------------------------------------------------------------------
2 // <copyright file="IControl.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI {
8     using System;
9 
10     internal interface IControl : IClientUrlResolver {
11         HttpContextBase Context {
12             get;
13         }
14         bool DesignMode {
15             get;
16         }
17     }
18 }
19