Click or drag to resize

PropertyType Enumeration

Supported document metadata property data types.

Namespace: OpenDiscoverSDK.Interfaces.Content
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.6.0 (2025.4.6)
Syntax
C#
[DataContractAttribute]
public enum PropertyType
Members
Member nameValueDescription
Undefined0 Property type is undefined (used internally and should never be a type returned through API).
Boolean1 1-byte boolean type.
Int322 4 byte (32-bit), signed integer.
Int643 8 byte (64-bit), signed integer.
Double4 8-byte (double-precision) IEEE floating-point number.
DateTime5

8-byte DateTime structure.

The vast majority of DataTime metadata extracted from document formats is in UTC (Utc), but in a few cases, the software that created the document didn't specify Kind, and therefore, the extracted DateTime from the document has DateTime.Kind set as Unspecified.

String6 Represents zero or more Unicode characters.
BooleanList10 Represents a list of boolean values.
Int32List11 Represents a list of Int32 values.
Int64List12 Represents a list of Int64 values.
DoubleList13 Represents a list of 8-byte (double-precision) IEEE floating-point number.
DateTimeList14 Represents a list of DateTime values.
StringList15 Represents a list of string values.
See Also