Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IUserControlDesignerAccessor.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02a6ab4f746dc3f291c88c2516977e8a9061f019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// System.Web.UI.IUserControlDesignerAccessor.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2003 Andreas Nahr
//

namespace System.Web.UI
{
	public interface IUserControlDesignerAccessor
        {
                string InnerText { get; set; }
		string TagName { get; set; }
        }
}