diff options
| author | gion <oancaionutandrei@gmail.com> | 2020-04-17 13:47:00 +0200 |
|---|---|---|
| committer | gion <oancaionutandrei@gmail.com> | 2020-04-27 22:39:37 +0200 |
| commit | aad5058d25b3c295e9ea5b4330dde219034ba8c8 (patch) | |
| tree | 82e03a7528e1ef877a3b5f1e01baaa1903ccb727 /MediaBrowser.Controller/Net/IWebSocketConnection.cs | |
| parent | 40889702d05c7a6f3dc30090e9443e94cb29fbd9 (diff) | |
Implement KeepAlive for WebSockets
Diffstat (limited to 'MediaBrowser.Controller/Net/IWebSocketConnection.cs')
| -rw-r--r-- | MediaBrowser.Controller/Net/IWebSocketConnection.cs | 6 |
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> |
