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

Implements the IsCOMObject property and, when implemented by a derived class, determines whether the Type is a COM object.

[Visual Basic]
MustOverride Protected Function IsCOMObjectImpl() As Boolean
[C#]
protected abstract bool IsCOMObjectImpl();
[C++]
protected: virtual bool IsCOMObjectImpl() = 0;
[JScript]
protected abstract function IsCOMObjectImpl() : Boolean;

Return Value

true if the Type is a COM object; otherwise, false.

Remarks

Abstract. This method must be implemented by a derived class.

This method returns false for COM interfaces because they are not objects. COM interfaces can be implemented by NGWS objects.

See Also

Type Class | Type Members | System Namespace | IsCOMObject