1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-18 03:43:00 +00:00

Added code docs, added ContinueOnQueryResponse

This commit is contained in:
Jan Korf
2019-08-06 13:19:34 +02:00
parent 11016bc213
commit 780da53475
50 changed files with 2545 additions and 30 deletions
@@ -3,6 +3,9 @@ using System.Threading.Tasks;
namespace CryptoExchange.Net.Sockets
{
/// <summary>
/// Subscription
/// </summary>
public class UpdateSubscription
{
private readonly SocketConnection connection;
@@ -40,6 +43,11 @@ namespace CryptoExchange.Net.Sockets
/// </summary>
public int Id => connection.Socket.Id;
/// <summary>
/// ctor
/// </summary>
/// <param name="connection"></param>
/// <param name="subscription"></param>
public UpdateSubscription(SocketConnection connection, SocketSubscription subscription)
{
this.connection = connection;