aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/IConnectionManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-30 00:18:32 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-30 00:18:32 -0500
commit792e4c4f1ba3d337cfaffca03e158d95560b3093 (patch)
tree8bee5291031e81c2c6108e6acd45828f83dbf7f7 /MediaBrowser.Model/ApiClient/IConnectionManager.cs
parenta6145e54d901095e5b67704e3103843b4b515681 (diff)
sync updates
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IConnectionManager.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/IConnectionManager.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IConnectionManager.cs b/MediaBrowser.Model/ApiClient/IConnectionManager.cs
index a54c330ac..658c71ac5 100644
--- a/MediaBrowser.Model/ApiClient/IConnectionManager.cs
+++ b/MediaBrowser.Model/ApiClient/IConnectionManager.cs
@@ -136,5 +136,14 @@ namespace MediaBrowser.Model.ApiClient
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
Task<List<ServerInfo>> GetAvailableServers(CancellationToken cancellationToken);
+
+ /// <summary>
+ /// Authenticates an offline user with their password
+ /// </summary>
+ /// <param name="user">The user.</param>
+ /// <param name="password">The password.</param>
+ /// <param name="rememberCredentials">if set to <c>true</c> [remember credentials].</param>
+ /// <returns>Task.</returns>
+ Task AuthenticateOffline(UserDto user, string password, bool rememberCredentials);
}
}