TagPrefixInfo Constructor
Initializes a new instance of the TagPrefixInfo class using the passed values.
Assembly: System.Web (in System.Web.dll)
public:
TagPrefixInfo(
String^ tagPrefix,
String^ nameSpace,
String^ assembly,
String^ tagName,
String^ source
)
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.