6 implementations of
Microsoft.AspNetCore.Mvc.Localization (3)
HtmlLocalizer.cs (1)
39public virtual LocalizedHtmlString this[string name, params object[] arguments]
HtmlLocalizerOfT.cs (1)
38public virtual LocalizedHtmlString this[string name, params object[] arguments]
ViewLocalizer.cs (1)
54public virtual LocalizedHtmlString this[string key, params object[] arguments]
Microsoft.AspNetCore.Mvc.Localization.Test (3)
MvcLocalizationServiceCollectionExtensionsTest.cs (2)
76public LocalizedHtmlString this[string name, params object[] arguments] 105public LocalizedHtmlString this[string name, params object[] arguments]
ViewLocalizerTest.cs (1)
306public LocalizedHtmlString this[string name, params object[] arguments]
5 references to
Microsoft.AspNetCore.Mvc.Localization (3)
HtmlLocalizerExtensions.cs (1)
39return htmlLocalizer[name, arguments];
HtmlLocalizerOfT.cs (1)
44return _localizer[name, arguments];
ViewLocalizer.cs (1)
60return _localizer[key, arguments];
Microsoft.AspNetCore.Mvc.Localization.Test (2)
HtmlLocalizerOfTTest.cs (1)
39htmlLocalizer.Setup(h => h["Hello", "test"]).Returns(localizedString);
ViewLocalizerTest.cs (1)
92htmlLocalizer.Setup(h => h["Hello", "test"]).Returns(localizedString);