Gets the type of the object matching the specified type name within the specified assembly. This method will be used by the designer host to load classes and other data types.
[Visual Basic] Overloads Overridable Public Function GetType( _ ByVal typeName As String, _ ByVal assemblyName As AssemblyName _ ) As Type [C#] public virtual Type GetType( string typeName, AssemblyName assemblyName ); [C++] public: virtual Type* GetType( String* typeName, AssemblyName* assemblyName ); [JScript] public function GetType( typeName : String, assemblyName : AssemblyName ) : Type;
The type of the object indicated by the specified name and assembly.
Notes to Inheritors: The default implementation simply calls Type.GetType, but you can override this to provide your own functionality.
CodeStream Class | CodeStream Members | System.ComponentModel.Design Namespace | CodeStream.GetType Overload List