NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IWebFormServices.GetTagPrefix

Obtains the registered tag prefix given the NGWS runtime namespace and the assembly to which a control belongs.

[Visual Basic]
Function GetTagPrefix( _
   ByVal nameSpace As String, _
   ByVal assembly As String _
) As String
[C#]
string GetTagPrefix(
   string nameSpace,
   string assembly
);
[C++]
String* GetTagPrefix(
   String* nameSpace,
   String* assembly
) = 0;
[JScript]
function GetTagPrefix(
   nameSpace : String,
   assembly : String
) : String;

Parameters

nameSpace
NGWS runtime namespace to which the control belongs.
assembly
NGWS runtime assembly name which contains the control.

Return Value

The tag prefix that is registered for the given NGWS runtime namespace and assembly.

See Also

IWebFormServices Interface | IWebFormServices Members | System.Web.UI.Design Namespace