1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-15 18:33:06 +00:00

Added array serialization option, adjusted array converter

This commit is contained in:
Jan Korf
2019-08-29 09:30:17 +02:00
parent c75636a017
commit 88b02b0b41
7 changed files with 86 additions and 7 deletions
+15
View File
@@ -82,4 +82,19 @@
/// </summary>
Bid
}
/// <summary>
/// Define how array parameters should be send
/// </summary>
public enum ArrayParametersSerialization
{
/// <summary>
/// Send multiple key=value for each entry
/// </summary>
MultipleValues,
/// <summary>
/// Create an []=value array
/// </summary>
Array
}
}