diff options
Diffstat (limited to 'MediaBrowser.Common/Security/ISecurityManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Security/ISecurityManager.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/MediaBrowser.Common/Security/ISecurityManager.cs b/MediaBrowser.Common/Security/ISecurityManager.cs index 1555f1d86..a23a786f2 100644 --- a/MediaBrowser.Common/Security/ISecurityManager.cs +++ b/MediaBrowser.Common/Security/ISecurityManager.cs @@ -1,5 +1,5 @@ -using System.Threading.Tasks; using MediaBrowser.Model.Entities; +using System.Threading.Tasks; namespace MediaBrowser.Common.Security { @@ -18,17 +18,10 @@ namespace MediaBrowser.Common.Security string SupporterKey { get; set; } /// <summary> - /// Gets or sets the legacy key. - /// </summary> - /// <value>The legacy key.</value> - string LegacyKey { get; set; } - - /// <summary> /// Gets the registration status. Overload to support existing plug-ins. /// </summary> /// <param name="feature">The feature.</param> /// <param name="mb2Equivalent">The MB2 equivalent.</param> - /// <param name="version">The version of the feature</param> /// <returns>Task{MBRegistrationRecord}.</returns> Task<MBRegistrationRecord> GetRegistrationStatus(string feature, string mb2Equivalent = null); @@ -40,6 +33,7 @@ namespace MediaBrowser.Common.Security /// <param name="version">The version of the feature</param> /// <returns>Task{MBRegistrationRecord}.</returns> Task<MBRegistrationRecord> GetRegistrationStatus(string feature, string mb2Equivalent, string version); + /// <summary> /// Load all registration info for all entities that require registration /// </summary> |
