DocumentFieldType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The type of the value of a DocumentField.
public enum DocumentFieldType
type DocumentFieldType =
Public Enum DocumentFieldType
- Inheritance
-
DocumentFieldType
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | Used when the value of the field could not be parsed by the service. The expected field type can be checked at ExpectedFieldType. Consider using Content to get a textual representation of the field and parsing it manually in this case. |
String | 1 | Used for String type. |
Date | 2 | Used for DateTime type. |
Time | 3 | Used for TimeSpan type. |
PhoneNumber | 4 | Used for String type with a phone number format. |
Double | 5 | Used for Double type. |
Int64 | 6 | Used for Int64 type. |
List | 7 | Used for List<T> type. |
Dictionary | 8 | Used for Dictionary<TKey,TValue> type. |
SelectionMark | 9 | Used for DocumentSelectionMarkState type. |
CountryRegion | 10 | Used for String type with an ISO 3166-1 alpha-3 country code. |
Signature | 11 | Used for DocumentSignatureType type. |
Currency | 12 | Used for CurrencyValue type. |
Address | 13 | Used for AddressValue type. |
Boolean | 14 | Used for Boolean type. |
Applies to
Azure SDK for .NET