123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Threading.Tasks;
- namespace InABox.Mobile
- {
-
- public class LatestVersionException : Exception
- {
- public LatestVersionException(string message)
- : base(message)
- {
- }
- public LatestVersionException(Exception innerException)
- : base("", innerException)
- {
- }
- public LatestVersionException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- /// <summary>
- /// LatestVersion plugin
- /// </summary>
- public interface IAppVersion
- {
- /// <summary>
- /// Gets the version number of the current app's installed version.
- /// </summary>
- /// <value>The current app's installed version number.</value>
- string InstalledVersionNumber { get; }
- /// <summary>
- /// Checks if the current app is the latest version available in the public store.
- /// </summary>
- /// <returns>True if the current app is the latest version available, false otherwise.</returns>
- Task<bool> IsUsingLatestVersion();
- /// <summary>
- /// Gets the version number of the current app's latest version available in the public store.
- /// </summary>
- /// <returns>The current app's latest version number.</returns>
- Task<string> GetLatestVersionNumber();
- /// <summary>
- /// Gets the version number of an app's latest version available in the public store.
- /// </summary>
- /// <returns>The specified app's latest version number</returns>
- /// <param name="appName">Name of the app to get.</param>
- Task<string> GetLatestVersionNumber(string appName);
- /// <summary>
- /// Opens the current app in the public store.
- /// </summary>
- Task OpenAppInStore();
- /// <summary>
- /// Opens an app in the public store.
- /// </summary>
- /// <param name="appName">Name of the app to open.</param>
- Task OpenAppInStore(string appName);
- }
- }
|