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!

IDesignerHost.GetType (String, AssemblyName)

Gets an instance of the type for the specified fully qualified type name TypeName within the assembly AssemblyName.

[Visual Basic]
Overloads Function GetType( _
   ByVal typeName As String, _
   ByVal assemblyName As AssemblyName _
) As Type
[C#]
Type GetType(
   string typeName,
   AssemblyName assemblyName
);
[C++]
Type* GetType(
   String* typeName,
   AssemblyName* assemblyName
) = 0;
[JScript]
function GetType(
   typeName : String,
   assemblyName : AssemblyName
) : Type;

Parameters

typeName
The name of the type to load.
assemblyName
The name of the assembly that contains the type.

Return Value

The type object for the specified type name, or a null reference (in Visual Basic Nothing) if the type could not be found.

See Also

IDesignerHost Interface | IDesignerHost Members | System.ComponentModel.Design Namespace | IDesignerHost.GetType Overload List