changes parameter to path instead of name.

This commit is contained in:
Shannon
2021-07-12 10:08:54 -06:00
parent a72797e8c9
commit b912f1361a
2 changed files with 5 additions and 5 deletions

View File

@@ -77,14 +77,14 @@ namespace Umbraco.Cms.Core.Services
/// Gets a list of all <see cref="IStylesheet"/> objects
/// </summary>
/// <returns>An enumerable list of <see cref="IStylesheet"/> objects</returns>
IEnumerable<IStylesheet> GetStylesheets(params string[] names);
IEnumerable<IStylesheet> GetStylesheets(params string[] paths);
/// <summary>
/// Gets a <see cref="IStylesheet"/> object by its name
/// </summary>
/// <param name="name">Name of the stylesheet incl. extension</param>
/// <param name="path">Path of the stylesheet incl. extension</param>
/// <returns>A <see cref="IStylesheet"/> object</returns>
IStylesheet GetStylesheet(string name);
IStylesheet GetStylesheet(string path);
/// <summary>
/// Saves a <see cref="IStylesheet"/>