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