mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-23 14:22:55 +00:00
Small fixes DelayAfterConnect option
This commit is contained in:
@@ -271,7 +271,7 @@ namespace CryptoExchange.Net.Objects
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The time to wait after connecting a socket before sending messages. Can be used for API's which will rate limit if you subscribe directly after connecting.
|
/// The time to wait after connecting a socket before sending messages. Can be used for API's which will rate limit if you subscribe directly after connecting.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TimeSpan DelayAfterConnect = TimeSpan.Zero;
|
public TimeSpan DelayAfterConnect { get; set; } = TimeSpan.Zero;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ctor
|
/// ctor
|
||||||
@@ -305,6 +305,7 @@ namespace CryptoExchange.Net.Objects
|
|||||||
SocketNoDataTimeout = baseOptions.SocketNoDataTimeout;
|
SocketNoDataTimeout = baseOptions.SocketNoDataTimeout;
|
||||||
SocketSubscriptionsCombineTarget = baseOptions.SocketSubscriptionsCombineTarget;
|
SocketSubscriptionsCombineTarget = baseOptions.SocketSubscriptionsCombineTarget;
|
||||||
MaxSocketConnections = baseOptions.MaxSocketConnections;
|
MaxSocketConnections = baseOptions.MaxSocketConnections;
|
||||||
|
DelayAfterConnect = baseOptions.DelayAfterConnect;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
|
|||||||
Reference in New Issue
Block a user