diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-03-14 12:40:36 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-03-14 12:40:36 -0400 |
| commit | a7f06c84b14ea79ce5af8e928597f6fd119088a3 (patch) | |
| tree | 8da2780a6bd857b719d355ed9cc441ef17609a1d /MediaBrowser.Common/Security/IRequiresRegistration.cs | |
| parent | d3b37a73cc32d654fa823d9b2e8b31ff470ebffd (diff) | |
Hook new registration load to changing supporter keys
Diffstat (limited to 'MediaBrowser.Common/Security/IRequiresRegistration.cs')
| -rw-r--r-- | MediaBrowser.Common/Security/IRequiresRegistration.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Security/IRequiresRegistration.cs b/MediaBrowser.Common/Security/IRequiresRegistration.cs index 66667d449..7b1667c2e 100644 --- a/MediaBrowser.Common/Security/IRequiresRegistration.cs +++ b/MediaBrowser.Common/Security/IRequiresRegistration.cs @@ -4,6 +4,12 @@ namespace MediaBrowser.Common.Security { public interface IRequiresRegistration { + /// <summary> + /// Load all registration information required for this entity. + /// Your class should re-load all MBRegistrationRecords when this is called even if they were + /// previously loaded. + /// </summary> + /// <returns></returns> Task LoadRegistrationInfoAsync(); } } |
