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!

Type.GetType

Gets the Type with the specified name.

Overload List

Gets the Type with the specified name, performing a case-sensitive search and throwing an exception on error while loading the Type.

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

Gets the Type with the specified name, performing a case-sensitive search and specifying whether to throw an exception on error while loading the Type.

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

Gets the Type with the specified name, specifying whether to perform a case-sensitive search and whether to throw an exception on error while loading the Type.

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

See Also

Type Class | Type Members | System Namespace