ControlBuilder.Init Method (TemplateParser, ControlBuilder, Type, String, String, IDictionary)
.NET Framework (current version)
Initializes the ControlBuilder for use after it is instantiated. This method is called by the ASP.NET page framework.
Assembly: System.Web (in System.Web.dll)
public virtual void Init( TemplateParser parser, ControlBuilder parentBuilder, Type type, string tagName, string id, IDictionary attribs )
Parameters
- parser
-
Type:
System.Web.UI.TemplateParser
The TemplateParser object responsible for parsing the control.
- parentBuilder
-
Type:
System.Web.UI.ControlBuilder
The ControlBuilder object responsible for building the parent control.
- type
-
Type:
System.Type
The Type assigned to the control that the builder will create.
- tagName
-
Type:
System.String
The name of the tag to be built. This allows the builder to support multiple tag types.
- id
-
Type:
System.String
The ID attribute assigned to the control.
- attribs
-
Type:
System.Collections.IDictionary
The IDictionary object that holds all the specified tag attributes.
This method is called by the ASP.NET page framework during parsing and is not intended to be called directly in you code.
.NET Framework
Available since 1.1
Available since 1.1
Show: