diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2020-04-01 23:38:43 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-01 23:38:43 +0300 |
| commit | 07ea120ba961c20717dba625edb462d09e5ebec3 (patch) | |
| tree | 1e1c03d9afafb0ce9cdcf12153a0bb58a477dfe4 /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | 10275a1f32908a2b0c27b97563fbf8f55f4f3146 (diff) | |
| parent | 861bad1edaec10fa03d2f7cf12bb8b7b6ae1802c (diff) | |
Merge pull request #2601 from mark-monteiro/support-running-without-web-content
Support Running Server Without Web Content
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index 25f0905eb..608ffc61c 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -82,6 +82,11 @@ namespace MediaBrowser.Controller /// <returns>The local API URL.</returns> string GetLocalApiUrl(IPAddress address); + /// <summary> + /// Open a URL in an external browser window. + /// </summary> + /// <param name="url">The URL to open.</param> + /// <exception cref="NotSupportedException"><see cref="CanLaunchWebBrowser"/> is false.</exception> void LaunchUrl(string url); void EnableLoopback(string appName); |
