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

Implements the IsArray property and, when implemented by a derived class, determines whether the Type is an array.

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

Return Value

true if the Type is an array; otherwise, false.

Remarks

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

An instance of the Array class must return false because it is an object, not an array.

See Also

Type Class | Type Members | System Namespace | IsArray