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

Implements the IsPrimitive property and, when implemented by a derived class, determines whether the Type is one of the primitive types.

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

Return Value

true if the Type is one of the primitive types; otherwise, false.

Remarks

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

The primitive types are Boolean, Byte, SByte, Int16, UInt16, Int32, UInt32, Int64, UInt64, Char, Double, and Single.

See Also

Type Class | Type Members | System Namespace | Boolean | Byte | SByte | Int16 | UInt16 | Int32 | UInt32 | Int64 | UInt64 | Char | Double | Single | IsPrimitive