Click or drag to resize

DataType Enumeration

Data types available to a DataSet object.

Namespace: GSF.Data
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.293-beta+b9f6fb0447e0fddffa5bbbc6db4d9737c334ae9a
Syntax
public enum DataType
Members
Member nameValueDescription
Boolean0 Boolean data type, Boolean.
Byte1 Unsigned 8-bit byte data type, Byte.
Char2 16-bit character data type, Char.
DateTime3 Date/time data type, DateTime.
Decimal4 Decimal data type, Decimal.
Double5 64-bit double precision floating point numeric data type, Double.
Guid6 Unsigned 128-bit Guid integer data type, Guid.
Int167 Signed 16-bit integer data type, Int16.
Int328 Signed 32-bit integer data type, Int32.
Int649 Signed 64-bit integer data type, Int64
SByte10 Signed byte data type, SByte.
Single11 32-bit single precision floating point numeric data type, Single.
String12 Character array data type, String.
TimeSpan13 Time-span data type, TimeSpan.
UInt1614 Unsigned 16-bit integer data type, UInt16.
UInt3215 Unsigned 32-bit integer data type, UInt32.
UInt6416 Unsigned 64-bit integer data type, UInt64.
Blob17 Unsigned byte array data type.
Object18 User defined/other data type.

The DataType type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodDeriveColumnType Gets column object Type from given DataType.
(Defined by DataSetExtensions)
Public Extension MethodGetDescription Retrieves the description of the value that this Enum represents extracted from the DescriptionAttribute, or the enumeration name if no description is available.
(Defined by EnumExtensions)
Public Extension MethodGetFormattedName Retrieves a formatted name of the value that this Enum represents for visual display.
(Defined by EnumExtensions)
Top
See Also