Update documentation for GetAllContentTags method in ITagQuery interface (#15860)

This commit is contained in:
Bishal Tim
2024-03-12 16:08:22 +05:45
committed by GitHub
parent d97cbf486d
commit d8b0616434

View File

@@ -33,6 +33,11 @@ public interface ITagQuery
/// <summary>
/// Gets all document tags.
/// </summary>
/// /// <remarks>
/// If no culture is specified, it retrieves tags with an invariant culture.
/// If a culture is specified, it only retrieves tags for that culture.
/// Use "*" to retrieve tags for all cultures.
/// </remarks>
IEnumerable<TagModel?> GetAllContentTags(string? group = null, string? culture = null);
/// <summary>