aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IWebSocketConnection.cs
diff options
context:
space:
mode:
authorgion <oancaionutandrei@gmail.com>2020-04-17 13:47:00 +0200
committergion <oancaionutandrei@gmail.com>2020-04-27 22:39:37 +0200
commitaad5058d25b3c295e9ea5b4330dde219034ba8c8 (patch)
tree82e03a7528e1ef877a3b5f1e01baaa1903ccb727 /MediaBrowser.Controller/Net/IWebSocketConnection.cs
parent40889702d05c7a6f3dc30090e9443e94cb29fbd9 (diff)
Implement KeepAlive for WebSockets
Diffstat (limited to 'MediaBrowser.Controller/Net/IWebSocketConnection.cs')
-rw-r--r--MediaBrowser.Controller/Net/IWebSocketConnection.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/IWebSocketConnection.cs b/MediaBrowser.Controller/Net/IWebSocketConnection.cs
index 31eb7ccb7..fb766ab57 100644
--- a/MediaBrowser.Controller/Net/IWebSocketConnection.cs
+++ b/MediaBrowser.Controller/Net/IWebSocketConnection.cs
@@ -27,6 +27,12 @@ namespace MediaBrowser.Controller.Net
DateTime LastActivityDate { get; }
/// <summary>
+ /// Gets or sets the date of last Keeplive received.
+ /// </summary>
+ /// <value>The date of last Keeplive received.</value>
+ public DateTime LastKeepAliveDate { get; set; }
+
+ /// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>The URL.</value>