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!

CodeStream.GetType (String)

Gets the type of the object matching the specified type name. This method is used by the designer host to load classes and other data types.

[Visual Basic]
Overloads Overridable Public Function GetType( _
   ByVal typeName As String _
) As Type
[C#]
public virtual Type GetType(
   string typeName
);
[C++]
public: virtual Type* GetType(
   String* typeName
);
[JScript]
public function GetType(
   typeName : String
) : Type;

Parameters

typeName
The name of the type to load.

Return Value

The type of the object indicated by the specified name.

Remarks

Notes to Inheritors: The default implementation simply calls Type.GetType, but you may override this to provide your own functionality.

See Also

CodeStream Class | CodeStream Members | System.ComponentModel.Design Namespace | CodeStream.GetType Overload List