using Umbraco.Cms.Core.Services; namespace Umbraco.Cms.Core.Extensions; /// /// Provides extension methods for . /// public static class LanguageServiceExtensions { /// /// Retrieves all ISO codes of all languages. /// /// The . /// A collection of language ISO codes. public static async Task> GetAllIsoCodesAsync(this ILanguageService service) => (await service.GetAllAsync()).Select(x => x.IsoCode); }