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

Some small improvements and fixes

This commit is contained in:
JKorf
2024-03-22 16:41:19 +01:00
parent de72fe4fb9
commit 8ddd9ecf22
4 changed files with 76 additions and 22 deletions
+10 -3
View File
@@ -99,15 +99,22 @@
/// Define how array parameters should be send
/// </summary>
public enum ArrayParametersSerialization
#pragma warning disable CS1570 // XML comment has badly formed XML
{
/// <summary>
/// Send multiple key=value for each entry
/// Send as key=value1&key=value2
/// </summary>
MultipleValues,
/// <summary>
/// Create an []=value array
/// Send as key[]=value1&key[]=value2
/// </summary>
Array
Array,
/// <summary>
/// Send as key=[value1, value2]
/// </summary>
JsonArray
#pragma warning restore CS1570 // XML comment has badly formed XML
}
/// <summary>