From 1f31c8dbfca9ca9134d9ee779256c435f913689b Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Sun, 26 Jan 2014 09:32:38 -0500 Subject: Add overload for existing plug-in support --- MediaBrowser.Common/Security/ISecurityManager.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Common/Security') diff --git a/MediaBrowser.Common/Security/ISecurityManager.cs b/MediaBrowser.Common/Security/ISecurityManager.cs index b7dd8b617f..1555f1d863 100644 --- a/MediaBrowser.Common/Security/ISecurityManager.cs +++ b/MediaBrowser.Common/Security/ISecurityManager.cs @@ -24,14 +24,22 @@ namespace MediaBrowser.Common.Security string LegacyKey { get; set; } /// - /// Gets the registration status. + /// Gets the registration status. Overload to support existing plug-ins. /// /// The feature. /// The MB2 equivalent. /// The version of the feature /// Task{MBRegistrationRecord}. - Task GetRegistrationStatus(string feature, string mb2Equivalent = null, string version = null); + Task GetRegistrationStatus(string feature, string mb2Equivalent = null); + /// + /// Gets the registration status. + /// + /// The feature. + /// The MB2 equivalent. + /// The version of the feature + /// Task{MBRegistrationRecord}. + Task GetRegistrationStatus(string feature, string mb2Equivalent, string version); /// /// Load all registration info for all entities that require registration /// -- cgit v1.2.3