You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/docs/getting-started/v3/custom-serialization.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,10 +40,10 @@ System types:
40
40
*`System.DateOnly`
41
41
*`System.DateTime`
42
42
*`System.DateTimeOffset`
43
-
*`System.Guid`
44
-
*`System.Index`
43
+
*`System.Guid`_(starting with v3 1.0.0 or later)_
44
+
*`System.Index`_(starting with v3 1.0.0 or later)_
45
45
*`System.Numerics.BigInteger`
46
-
*`System.Range`
46
+
*`System.Range`_(starting with v3 1.0.0 or later)_
47
47
*`System.TimeOnly`
48
48
*`System.TimeSpan`
49
49
*`System.Type`
@@ -55,6 +55,7 @@ Additional supported values:
55
55
* Arrays of serializable values
56
56
* Enum values
57
57
* Values which implement both [`IFormattable`](https://learn.microsoft.com/dotnet/api/system.iformattable) and [`IParsable<TSelf>`](https://learn.microsoft.com/dotnet/api/system.iparsable-1)_(starting with v3 1.1.0 or later)_.
58
+
* Tuples, typed via `Tuple<>` or `ValueTuple<>`, as well as untyped _(starting with v3 3.0.1 or later)_.
58
59
*`null` values
59
60
60
61
In order to support developers wanting to be able to run individual theory data rows, we also added the ability to provide your own custom serialization for your own custom data types.
0 commit comments