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!

Assembly.GetType

Overloaded. Gets the Type object that represents the specified type.

Overload List

Gets the Type object with the specified name, ignoring case, and optionally throws an exception on error.

[Visual Basic] Overloads Public Function GetType(String, Boolean, Boolean) As Type
[C#] public Type GetType(String, bool, bool);
[C++] public: Type* GetType(String*, bool, bool);
[JScript] public function GetType(String, Boolean, Boolean) : Type;

Gets the Type object with the specified name and optionally throws an exception on exception.

[Visual Basic] Overloads Overridable Public Function GetType(String, Boolean) As Type
[C#] public virtual Type GetType(String, bool);
[C++] public: virtual Type* GetType(String*, bool);
[JScript] public function GetType(String, Boolean) : Type;

Gets the Type object with the specified name.

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

See Also

Assembly Class | Assembly Members | System.Reflection Namespace