From 3d0c449dfcb997d096c429b14c7effc71fe01518 Mon Sep 17 00:00:00 2001 From: Jan Korf Date: Tue, 14 May 2019 10:33:14 +0200 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1612595..c605e15 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ public async Task AsyncMethod() var result2 = await client.PingAsync(); } } +```` ## Response handling All API requests will respond with a (Web)CallResult object. This object contains whether the call was successful, the data returned from the call and an error if the call wasn't successful. As such, one should always check the Success flag when processing a response. @@ -172,6 +173,8 @@ var bids = orderBook.Bids; // All bids ```` The order book will automatically reconnect when the connection is lost and resync if it detects the sequence is off. Make sure to check the Status property to see it the book is currently in sync. +To stop synchronizing an order book use the `Stop` method. + ## Release notes * Version 2.1.2 - 14 may 2019 * Added order book base class for easy implementation