Click or drag to resize

DeserializedDataType Enumeration

Designates the data type that was used to deserialize the data. This does not tell you how to interpret the data. For instance, double can also interpreted as DateTime, Time, etc.

Namespace: Altaxo.Serialization.Origin
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum DeserializedDataType
Members
Member nameValueDescription
Unknown0 Value not set yet, or type is unknown.
Text1Text
TextAndNumber2Text and Double
Complex3Complex (2 x double)
Double4Double (8 byte)
Double105Double (10 byte)
Single6Single (4 byte)
Int327Signed int (4 byte)
UInt328Unsigned int (4 byte)
Int169Signed int (2 byte)
UInt1610Unsigned int (2 byte)
SByte11Signed int (1 byte)
Byte12Unsigned int (1 byte)

The DeserializedDataType type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also