6 implementations of
Microsoft.AspNetCore.Mvc.Localization (3)
HtmlLocalizer.cs (1)
28public virtual LocalizedHtmlString this[string name]
HtmlLocalizerOfT.cs (1)
27public virtual LocalizedHtmlString this[string name]
ViewLocalizer.cs (1)
43public virtual LocalizedHtmlString this[string key]
Microsoft.AspNetCore.Mvc.Localization.Test (3)
MvcLocalizationServiceCollectionExtensionsTest.cs (2)
74public LocalizedHtmlString this[string name] => throw new NotImplementedException(); 103public LocalizedHtmlString this[string name] => throw new NotImplementedException();
ViewLocalizerTest.cs (1)
294public LocalizedHtmlString this[string name]
5 references to
Microsoft.AspNetCore.Mvc.Localization (3)
HtmlLocalizerExtensions.cs (1)
24return htmlLocalizer[name];
HtmlLocalizerOfT.cs (1)
33return _localizer[name];
ViewLocalizer.cs (1)
49return _localizer[key];
Microsoft.AspNetCore.Mvc.Localization.Test (2)
HtmlLocalizerOfTTest.cs (1)
17htmlLocalizer.Setup(h => h["Hello"]).Returns(localizedString);
ViewLocalizerTest.cs (1)
60htmlLocalizer.Setup(h => h["Hello"]).Returns(localizedString);