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

ITagNameToTypeMapper.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: da35c6b0ee82beae0f92f1d48eb540585ca016b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Web.UI.ITagNameToTypeMapper.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;
using System.Web;
using System.Collections;

namespace System.Web.UI
{
        public interface ITagNameToTypeMapper
        {
                Type GetControlType(string tagName, IDictionary attribs);
        }
}