IShortcutHandler.cs 885 B

1234567891011121314151617181920212223242526272829
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. namespace MediaBrowser.Model.IO
  4. {
  5. public interface IShortcutHandler
  6. {
  7. /// <summary>
  8. /// Gets the extension.
  9. /// </summary>
  10. /// <value>The extension.</value>
  11. string Extension { get; }
  12. /// <summary>
  13. /// Resolves the specified shortcut path.
  14. /// </summary>
  15. /// <param name="shortcutPath">The shortcut path.</param>
  16. /// <returns>System.String.</returns>
  17. string Resolve(string shortcutPath);
  18. /// <summary>
  19. /// Creates the specified shortcut path.
  20. /// </summary>
  21. /// <param name="shortcutPath">The shortcut path.</param>
  22. /// <param name="targetPath">The target path.</param>
  23. /// <returns>System.String.</returns>
  24. void Create(string shortcutPath, string targetPath);
  25. }
  26. }