From ac269e8368842da0e82d9038a8dcb3e2ae622a41 Mon Sep 17 00:00:00 2001 From: Jkorf Date: Wed, 6 Oct 2021 09:33:04 +0200 Subject: [PATCH] Updated version --- CryptoExchange.Net/CryptoExchange.Net.csproj | 8 +- CryptoExchange.Net/CryptoExchange.Net.xml | 165 +++++++++++++++++++ README.md | 3 + 3 files changed, 172 insertions(+), 4 deletions(-) diff --git a/CryptoExchange.Net/CryptoExchange.Net.csproj b/CryptoExchange.Net/CryptoExchange.Net.csproj index 46aecfe..c0b54f6 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.csproj +++ b/CryptoExchange.Net/CryptoExchange.Net.csproj @@ -6,16 +6,16 @@ CryptoExchange.Net JKorf A base package for implementing cryptocurrency exchange API's - 4.2.6 - 4.2.6 - 4.2.6 + 4.2.7 + 4.2.7 + 4.2.7 false git https://github.com/JKorf/CryptoExchange.Net.git https://github.com/JKorf/CryptoExchange.Net en true - 4.2.6 - Fixed an issue causing socket client to stop processing data in .NET Framework + 4.2.7 - Made receivedMessages protected again to allow implementations with custom transport (Bittrex) to use it again enable 8.0 MIT diff --git a/CryptoExchange.Net/CryptoExchange.Net.xml b/CryptoExchange.Net/CryptoExchange.Net.xml index b595b3a..fb12a0c 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.xml +++ b/CryptoExchange.Net/CryptoExchange.Net.xml @@ -3632,6 +3632,28 @@ Update the received messages list, removing messages received longer than 3s ago + + + Received message info + + + + + Timestamp of the received data + + + + + Number of bytes received + + + + + ctor + + + + An update received from a socket update subscription @@ -4017,5 +4039,148 @@ + + + Specifies that is allowed as an input even if the + corresponding type disallows it. + + + + + Initializes a new instance of the class. + + + + + Specifies that is disallowed as an input even if the + corresponding type allows it. + + + + + Initializes a new instance of the class. + + + + + Specifies that a method that will never return under any circumstance. + + + + + Initializes a new instance of the class. + + + + + Specifies that the method will not return if the associated + parameter is passed the specified value. + + + + + Gets the condition parameter value. + Code after the method is considered unreachable by diagnostics if the argument + to the associated parameter matches this value. + + + + + Initializes a new instance of the + class with the specified parameter value. + + + The condition parameter value. + Code after the method is considered unreachable by diagnostics if the argument + to the associated parameter matches this value. + + + + + Specifies that an output may be even if the + corresponding type disallows it. + + + + + Initializes a new instance of the class. + + + + + Specifies that when a method returns , + the parameter may be even if the corresponding type disallows it. + + + + + Gets the return value condition. + If the method returns this value, the associated parameter may be . + + + + + Initializes the attribute with the specified return value condition. + + + The return value condition. + If the method returns this value, the associated parameter may be . + + + + + Specifies that an output is not even if the + corresponding type allows it. + + + + + Initializes a new instance of the class. + + + + + Specifies that the output will be non- if the + named parameter is non-. + + + + + Gets the associated parameter name. + The output will be non- if the argument to the + parameter specified is non-. + + + + + Initializes the attribute with the associated parameter name. + + + The associated parameter name. + The output will be non- if the argument to the + parameter specified is non-. + + + + + Specifies that when a method returns , + the parameter will not be even if the corresponding type allows it. + + + + + Gets the return value condition. + If the method returns this value, the associated parameter will not be . + + + + + Initializes the attribute with the specified return value condition. + + + The return value condition. + If the method returns this value, the associated parameter will not be . + + diff --git a/README.md b/README.md index c8f8f5b..75ef161 100644 --- a/README.md +++ b/README.md @@ -324,6 +324,9 @@ private void SomeMethod() ```` ## Release notes +* Version 4.2.7 - 06 Oct 2021 + * Made receivedMessages protected again to allow implementations with custom transport (Bittrex) to use it again + * Version 4.2.6 - 06 Oct 2021 * Fixed an issue causing socket client to stop processing data in .NET Framework