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

Gets a value indicating whether the Type is a class; that is, not a value type or interface.

[Visual Basic]
Public ReadOnly Property IsClass As Boolean
[C#]
public bool IsClass {get;}
[C++]
public: __property bool get_IsClass();
[JScript]
public function get IsClass() : Boolean;

Property Value

true if the Type is a class; otherwise, false.

Remarks

The ClassSemanticsMask is used to distinguish a type declaration as class, interface or value type.

See Also

Type Class | Type Members | System Namespace | TypeAttributes | IsInterface | IsValueType | IsUnmanagedValueType