ControlBuilder.CreateBuilderFromType Method (TemplateParser, ControlBuilder, Type, String, String, IDictionary, Int32, String)
.NET Framework (current version)
Creates a ControlBuilder object from the specified tag name and object type, as well as other parameters defining the builder.
Assembly: System.Web (in System.Web.dll)
static member CreateBuilderFromType : parser:TemplateParser * parentBuilder:ControlBuilder * type:Type * tagName:string * id:string * attribs:IDictionary * line:int * sourceFileName:string -> ControlBuilder
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 of the object 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.
- line
-
Type:
System.Int32
The source file line number for the specified control.
- sourceFileName
-
Type:
System.String
The name of the source file from which the control is to be created.
Return Value
Type: System.Web.UI.ControlBuilderThe builder that is responsible for creating the control.
.NET Framework
Available since 1.1
Available since 1.1
Show: