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.IsAssignableFrom

Determines whether an instance of the specified type can be assigned to the current Type instance.

[Visual Basic]
Overridable Public Function IsAssignableFrom( _
   ByVal c As Type _
) As Boolean
[C#]
public virtual bool IsAssignableFrom(
   Type c
);
[C++]
public: virtual bool IsAssignableFrom(
   Type* c
);
[JScript]
public function IsAssignableFrom(
   c : Type
) : Boolean;

Parameters

c
The Type to examine whether its objects can be assigned to the current Type instance.

Return Value

true if an instance of c can be assigned to the current Type instance; otherwise, false.

Remarks

This method can be overridden by a derived class.

See Also

Type Class | Type Members | System Namespace