The SettingDataTypes simple type, in Configuration Manager, defines the supported data types for simple settings.

<xs:simpleType name="SettingDataTypes">
	<xs:restriction
		base="string"
	>
		<xs:enumeration
			value="Int64"
		 />
		<xs:enumeration
			value="Double"
		 />
		<xs:enumeration
			value="String"
		 />
		<xs:enumeration
			value="DateTime"
		 />
		<xs:enumeration
			value="Version"
		 />
		<xs:enumeration
			value="Other"
		 />
	</xs:restriction>
</xs:simpleType>

Enumeration

The following values are defined by the SettingDataTypes simple type:

Value Description

Int64

A 64-bit signed integer.

Double

Double-precision floating-point number.

String

Sequence of characters.

DateTime

An instant in time, typically expressed as a date and time of day.

Version

A version number.

Other

Other.

See Also


Send comments about this topic to Microsoft.