Definition of data types that can be handled
in a generic 'Value' property as string.
Namespace: ArtDatabanken.WebService.DataAssembly: ArtDatabanken.WebService.Data (in ArtDatabanken.WebService.Data.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax Public Enumeration WebDataType
public enum class WebDataType
Members
| Member name | Value | Description |
---|
| Boolean | 0 |
A Boolean value.
String representation of a Boolean value is
either True or False.
|
| DateTime | 1 |
A DateTime value.
String representation of a DateTime value is in the format
Year-Month-DayTHour:Minute:Second:PartOfSecond, example
2008-06-15T21:15:07.0000000.
|
| Float64 | 2 |
A Float value. Standard 64-bit floating point.
String representation of a Float64 value is in the format
3.1415926536E+000.
|
| Int32 | 3 |
An Int32 value.
String representation of a Int32 value is in the format
2147483647.
|
| Int64 | 4 |
An Int64 value.
String representation of a Int64 value is in the format
9223372036854775807.
|
| String | 5 |
A String value.
|
See Also