4 implementations of GetAllStrings
Aspire.Dashboard.Tests (1)
Model\TestStringLocalizer.cs (1)
13public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) => [];
Microsoft.AspNetCore.Mvc.Localization.Test (1)
TestStringLocalizer.cs (1)
56public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures)
Microsoft.Extensions.Localization (1)
ResourceManagerStringLocalizer.cs (1)
126public virtual IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) =>
Microsoft.Extensions.Localization.Abstractions (1)
StringLocalizerOfT.cs (1)
52public IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures) =>
5 references to GetAllStrings
Microsoft.AspNetCore.Mvc.Localization (1)
HtmlLocalizer.cs (1)
67_localizer.GetAllStrings(includeParentCultures);
Microsoft.AspNetCore.Mvc.Localization.Test (1)
ViewLocalizerTest.cs (1)
321return _stringLocalizer.GetAllStrings(includeParentCultures);
Microsoft.Extensions.Localization.Abstractions (2)
StringLocalizerExtensions.cs (1)
58return stringLocalizer.GetAllStrings(includeParentCultures: true);
StringLocalizerOfT.cs (1)
53_localizer.GetAllStrings(includeParentCultures);
Microsoft.Extensions.Localization.Tests (1)
StringLocalizerOfTTest.cs (1)
120innerLocalizer.Verify(mock => mock.GetAllStrings(true), Times.Once());