diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-07 12:22:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-07 12:22:19 -0400 |
| commit | 4a030a70a95a51af22f8915801f28614d638714e (patch) | |
| tree | 18451543f49dd642211fa604404d55dac76e7a1f /MediaBrowser.ServerApplication/Native | |
| parent | 65f78ea5ad19620d73eba54ac289fb78ef70af2b (diff) | |
remove self update capability from service
Diffstat (limited to 'MediaBrowser.ServerApplication/Native')
| -rw-r--r-- | MediaBrowser.ServerApplication/Native/NativeApp.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.ServerApplication/Native/NativeApp.cs b/MediaBrowser.ServerApplication/Native/NativeApp.cs index 0e114b166..c0d3e876a 100644 --- a/MediaBrowser.ServerApplication/Native/NativeApp.cs +++ b/MediaBrowser.ServerApplication/Native/NativeApp.cs @@ -33,5 +33,17 @@ namespace MediaBrowser.ServerApplication.Native return MainStartup.CanSelfRestart; } } + + /// <summary> + /// Gets a value indicating whether this instance can self update. + /// </summary> + /// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value> + public static bool CanSelfUpdate + { + get + { + return MainStartup.CanSelfUpdate; + } + } } } |
