ArrayOptions Enumeration
/// Defines the behavior of CSV serialization when a nested array is encountered
///
|
Name
|
Value |
Description
|
|
CountItems
|
2
|
/// Render the number of items in the array
///
|
|
RecursiveSerialization
|
3
|
/// Serialize child arrays recursively using the same settings
///
|
|
ToString
|
0
|
/// Use built-in string conversion, which renders arrays as `MyNamespace.MyObject[]`
///
|
|
TreatAsNull
|
1
|
/// Convert any array columns that are array types into nulls (either blanks or null tokens)
///
|
In this article
Definition