TagPrefixInfo Constructor (String, String, String, String, String)
Initializes a new instance of the TagPrefixInfo class using the passed values.
Assembly: System.Web (in System.Web.dll)
Public Sub New ( tagPrefix As String, nameSpace As String, assembly As String, tagName As String, source As String )
Parameters
- tagPrefix
-
Type:
System.String
The tag prefix being mapped to a source file or namespace and assembly.
- nameSpace
-
Type:
System.String
The namespace associated with the tag prefix.
- assembly
-
Type:
System.String
The assembly where the namespace resides.
- tagName
-
Type:
System.String
The name of the control to be used in the page.
- source
-
Type:
System.String
The name of the file that contains the user control.
This constructor creates an instance of the TagPrefixInfo class and initializes it using the passed parameters. The parameters for which you specify values depend on the kind of control you refer to with the specified tag prefix. Parameters not required for that tag prefix should be left blank. (Use an empty string.)
If the control is a user control, you must specify values for the tagPrefix, tagName, and source parameters.
If the control is a custom control, you must specify values for the tagPrefix and nameSpace parameters. If the control is not in the application code directory, you must also specify the assembly parameter.
The following code example shows how to use the TagPrefixInfo constructor. This code example is part of a larger example provided for the PagesSection class.
Available since 2.0