diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-29 19:18:05 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-29 19:18:05 -0500 |
| commit | d39f8a11614de8850de9a9b433c1a4f190ccadc9 (patch) | |
| tree | b95d1c1142d104d201a5a0f92245a2bb7e7b19d2 /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | fb69d5b76d9f43979037ee2bb7469917c6e82633 (diff) | |
Added is running as service to IServerApplicationHost
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index 5554ced37..38a3cc923 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -21,6 +21,12 @@ namespace MediaBrowser.Controller string WebApplicationName { get; } /// <summary> + /// Gets a value indicating whether this instance is running as service. + /// </summary> + /// <value><c>true</c> if this instance is running as service; otherwise, <c>false</c>.</value> + bool IsRunningAsService { get; } + + /// <summary> /// Gets a value indicating whether [supports automatic run at startup]. /// </summary> /// <value><c>true</c> if [supports automatic run at startup]; otherwise, <c>false</c>.</value> |
