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.GetNestedType (String)

Searches for the nested type with the specified name.

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

Parameters

name
The String containing the name of the nested type to get.

Return Value

A Type object representing the nested type with the specified name, if found; otherwise, a null reference (in Visual Basic Nothing).

Exceptions

Exception Type Condition
ArgumentNullException name is a null reference (Nothing).

Remarks

The search for name is case-sensitive.

See Also

Type Class | Type Members | System Namespace | Type.GetNestedType Overload List