For Babelfish Release 1.11.1.3

ValueType Enumeration

The type of data that is stored within an AttributeField. C# Implementations should store and cast data as the following types.

Definition

Namespace: Scopos.BabelFish.DataModel.Definitions
Assembly: BabelFish (in BabelFish.dll) Version: 1.11.1.4+b1da393815f6638555a663d9a94167ecabea5695
C#
public enum ValueType

Members

DATE0 C# implementations should use DateTime objects. The time portion of the DateTime instance is ignored.
DATE_TIME1 C# implementations should use DateTime objects. The time portion of the DateTime instance is ignored.
TIME_SPAN2 C# implementations should use TimeSpan objects.
STRING3 C# implementations should use strings.
INTEGER4 C# implementations should use ints.
FLOAT5 C# implementations should use floats or doubles.
BOOLEAN6 C# implementations should use bools.

Extension Methods

Description Returns the Description attribute of an enum. If Description is not an attribute returns the .toString() value.
(Defined by EnumHelper)
GetAttributeOfTypeT Gets an attribute on an enum field value
(Defined by EnumHelper)

See Also