1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 12:53:02 +00:00

Added postParameterPosition/arraySeralization settings to authentication provider interface, fixed array serialization for request body

This commit is contained in:
Jan Korf
2020-06-07 12:40:26 +02:00
parent 5a33bd554e
commit 128cab8e1e
5 changed files with 51 additions and 163 deletions
@@ -218,6 +218,7 @@ namespace CryptoExchange.Net.OrderBook
/// <returns></returns>
public async Task<CallResult<bool>> StartAsync()
{
log.Write(LogVerbosity.Debug, $"{Id} order book {Symbol} starting");
Status = OrderBookStatus.Connecting;
_processTask = Task.Run(ProcessQueue);
@@ -271,6 +272,7 @@ namespace CryptoExchange.Net.OrderBook
/// <returns></returns>
public async Task StopAsync()
{
log.Write(LogVerbosity.Debug, $"{Id} order book {Symbol} stopping");
Status = OrderBookStatus.Disconnected;
_queueEvent.Set();
_processTask.Wait();