mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-02-16 14:13:46 +00:00
Added user data tracking logic Added LastReceiveTime, SocketStatus and SubscriptionStatus properties to UpdateSubscription Added SharedTransferStatus Enum and property to SharedDeposit Added PositionMode property to SharedPosition model Added IsZero property to SharedQuantity Renamed IWebSocket LastActionTime to LastReceiveTime Updated CryptoExchangeWebsocketClient LastReceiveTime logic Updated Subscription status change event handler to run sync instead of separate task
18 lines
333 B
C#
18 lines
333 B
C#
namespace CryptoExchange.Net.Trackers.UserData.Objects
|
|
{
|
|
/// <summary>
|
|
/// Update source
|
|
/// </summary>
|
|
public enum UpdateSource
|
|
{
|
|
/// <summary>
|
|
/// Polling result
|
|
/// </summary>
|
|
Poll,
|
|
/// <summary>
|
|
/// Websocket push
|
|
/// </summary>
|
|
Push
|
|
}
|
|
}
|