diff options
| author | ScottIsAFool <scottisafool@live.co.uk> | 2014-09-06 12:55:06 +0100 |
|---|---|---|
| committer | ScottIsAFool <scottisafool@live.co.uk> | 2014-09-06 12:56:02 +0100 |
| commit | cc0cbf061094cf97c7f6e37c13a734b5ff7189c9 (patch) | |
| tree | 937806b759cc98dab4b406000dc9283aa3a23f95 | |
| parent | 58eb50095676ec8bb4f7d4e1d0fc766dd3280305 (diff) | |
Option to keep existing auth in apiclient
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 7dec2fa38..1ce7b4af8 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -790,7 +790,8 @@ namespace MediaBrowser.Model.ApiClient /// Changes the server location. /// </summary> /// <param name="address">The address.</param> - void ChangeServerLocation(string address); + /// <param name="keepExistingAuth">Don't clear any existing authentication</param> + void ChangeServerLocation(string address, bool keepExistingAuth = false); /// <summary> /// Gets or sets the type of the client. |
