1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-11 16:32:57 +00:00

Added better support for subscriptions without subscribe confirmation

This commit is contained in:
Jkorf
2025-08-22 10:17:16 +02:00
parent 3e1b5ada69
commit d92f3b7904
6 changed files with 83 additions and 15 deletions
+16
View File
@@ -251,4 +251,20 @@ namespace CryptoExchange.Net.Objects
/// </summary>
DEX
}
/// <summary>
/// Timeout behavior for queries
/// </summary>
public enum TimeoutBehavior
{
/// <summary>
/// Fail the request
/// </summary>
Fail,
/// <summary>
/// Mark the query as successful
/// </summary>
Succeed
}
}