|
@@ -16,13 +16,7 @@ namespace MediaBrowser.Controller
|
|
|
{
|
|
|
event EventHandler HasUpdateAvailableChanged;
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// Gets the system info.
|
|
|
- /// </summary>
|
|
|
- /// <returns>SystemInfo.</returns>
|
|
|
- Task<SystemInfo> GetSystemInfo(CancellationToken cancellationToken);
|
|
|
-
|
|
|
- Task<PublicSystemInfo> GetPublicSystemInfo(CancellationToken cancellationToken);
|
|
|
+ IServiceProvider ServiceProvider { get; }
|
|
|
|
|
|
bool CanLaunchWebBrowser { get; }
|
|
|
|
|
@@ -55,6 +49,14 @@ namespace MediaBrowser.Controller
|
|
|
/// <value>The name of the friendly.</value>
|
|
|
string FriendlyName { get; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// Gets the system info.
|
|
|
+ /// </summary>
|
|
|
+ /// <returns>SystemInfo.</returns>
|
|
|
+ Task<SystemInfo> GetSystemInfo(CancellationToken cancellationToken);
|
|
|
+
|
|
|
+ Task<PublicSystemInfo> GetPublicSystemInfo(CancellationToken cancellationToken);
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// Gets all the local IP addresses of this API instance. Each address is validated by sending a 'ping' request
|
|
|
/// to the API that should exist at the address.
|