mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-13 10:56:35 +00:00
commit
5017c4d3c8
@ -5,23 +5,15 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PackageId>CryptoExchange.Net</PackageId>
|
<PackageId>CryptoExchange.Net</PackageId>
|
||||||
<Authors>JKorf</Authors>
|
<Authors>JKorf</Authors>
|
||||||
<PackageVersion>3.0.0</PackageVersion>
|
<PackageVersion>3.0.2</PackageVersion>
|
||||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||||
<PackageProjectUrl>https://github.com/JKorf/CryptoExchange.Net</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/JKorf/CryptoExchange.Net</PackageProjectUrl>
|
||||||
<NeutralLanguage>en</NeutralLanguage>
|
<NeutralLanguage>en</NeutralLanguage>
|
||||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
<PackageReleaseNotes>3.0.0 -
|
<PackageReleaseNotes>3.0.2 - Removed invalid check for unauthenticated proxy</PackageReleaseNotes>
|
||||||
* Updated to C# 8.0
|
|
||||||
* Added .NetStandard2.1 support
|
|
||||||
* Added Nullability support
|
|
||||||
* Now using HttpClient instead of WebRequest, should result in faster consequtive requests
|
|
||||||
* Added CancellationToken support
|
|
||||||
* Added bool compare override to CallResult (now possible to `if(callresult)` instead of `if(callresult.Success)`)
|
|
||||||
* Added input validation methods
|
|
||||||
* OnOrderBookUpdate event added to `SymbolOrderBook`</PackageReleaseNotes>
|
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<LangVersion>8.0</LangVersion>
|
<LangVersion>8.0</LangVersion>
|
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<DocumentationFile>CryptoExchange.Net.xml</DocumentationFile>
|
<DocumentationFile>CryptoExchange.Net.xml</DocumentationFile>
|
||||||
|
@ -58,9 +58,6 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// <param name="password">The proxy password</param>
|
/// <param name="password">The proxy password</param>
|
||||||
public ApiProxy(string host, int port, string? login, SecureString? password)
|
public ApiProxy(string host, int port, string? login, SecureString? password)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(login))
|
|
||||||
throw new ArgumentException("Proxy login not provided");
|
|
||||||
|
|
||||||
if (!host.StartsWith("http"))
|
if (!host.StartsWith("http"))
|
||||||
throw new ArgumentException("Proxy host should start with either http:// or https://");
|
throw new ArgumentException("Proxy host should start with either http:// or https://");
|
||||||
|
|
||||||
|
@ -194,6 +194,12 @@ The order book will automatically reconnect when the connection is lost and resy
|
|||||||
To stop synchronizing an order book use the `Stop` method.
|
To stop synchronizing an order book use the `Stop` method.
|
||||||
|
|
||||||
## Release notes
|
## Release notes
|
||||||
|
* Version 3.0.2 - 10 Dec 2019
|
||||||
|
* Removed invalid check for unauthenticated proxy
|
||||||
|
|
||||||
|
* Version 3.0.1 - 14 Nov 2019
|
||||||
|
* Re-enabled debug response logging
|
||||||
|
|
||||||
* Version 3.0.0 - 23 Oct 2019
|
* Version 3.0.0 - 23 Oct 2019
|
||||||
* Updated to C# 8.0
|
* Updated to C# 8.0
|
||||||
* Added .NetStandard2.1 support
|
* Added .NetStandard2.1 support
|
||||||
|
Loading…
x
Reference in New Issue
Block a user