IUserControlTypeResolutionService.GetType(String, String) Method

Definition

Retrieves a type based on a parsed ASP.NET tag prefix and the name of the tag.

public:
 Type ^ GetType(System::String ^ tagPrefix, System::String ^ tagName);
public Type GetType (string tagPrefix, string tagName);
abstract member GetType : string * string -> Type
Public Function GetType (tagPrefix As String, tagName As String) As Type

Parameters

tagPrefix
String

The parsed prefix of an ASP.NET tag.

tagName
String

The name of the parsed ASP.NET tag.

Returns

A Type that represents the type of control the prefix and tag identify.

Remarks

Designer environments implement this method to provide a way for ASP.NET parsers and designers to resolve user control types at design time.

Applies to