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!

TypeDelegator.BaseType

Retrieves the base type for the current type.

[Visual Basic]
Overridable Public ReadOnly Property BaseType As Type
[C#]
public Type BaseType {override get;}
[C++]
public: __property virtual Type* get_BaseType();
[JScript]
public function get BaseType() : Type;

Property Value

The base type for a type.

Remarks

The base type is the type from which this type directly inherits. Since the Object class type is the ultimate base class of all the other types, it is the only type that does not have a base type. In this case a null reference is returned as the base type of the Object type.

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace