6 implementations of GetAllStrings
Microsoft.AspNetCore.Mvc.Localization (3)
HtmlLocalizer.cs (1)
66public virtual IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) =>
HtmlLocalizerOfT.cs (1)
65public virtual IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) =>
ViewLocalizer.cs (1)
71public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) =>
Microsoft.AspNetCore.Mvc.Localization.Test (3)
MvcLocalizationServiceCollectionExtensionsTest.cs (2)
89public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) 118public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures)
ViewLocalizerTest.cs (1)
319public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures)
3 references to GetAllStrings
Microsoft.AspNetCore.Mvc.Localization (3)
HtmlLocalizerExtensions.cs (1)
51return htmlLocalizer.GetAllStrings(includeParentCultures: true);
HtmlLocalizerOfT.cs (1)
66_localizer.GetAllStrings(includeParentCultures);
ViewLocalizer.cs (1)
72_localizer.GetAllStrings(includeParentCultures);