2 instantiations of LocalizedHtmlString
Microsoft.AspNetCore.Mvc.Localization (2)
HtmlLocalizer.cs (2)
74
new
LocalizedHtmlString
(result.Name, result.Value, result.ResourceNotFound);
82
new
LocalizedHtmlString
(result.Name, result.Value, result.ResourceNotFound, arguments);
23 references to LocalizedHtmlString
Microsoft.AspNetCore.Mvc.Localization (23)
HtmlLocalizer.cs (6)
28
public virtual
LocalizedHtmlString
this[string name]
39
public virtual
LocalizedHtmlString
this[string name, params object[] arguments]
70
/// Creates a new <see cref="
LocalizedHtmlString
"/> for a <see cref="LocalizedString"/>.
73
protected virtual
LocalizedHtmlString
ToHtmlString(LocalizedString result) =>
77
/// Creates a new <see cref="
LocalizedHtmlString
"/> for a <see cref="LocalizedString"/>.
81
protected virtual
LocalizedHtmlString
ToHtmlString(LocalizedString result, object[] arguments) =>
HtmlLocalizerExtensions.cs (6)
14
/// Gets the <see cref="
LocalizedHtmlString
"/> resource for a specific name.
18
/// <returns>The <see cref="
LocalizedHtmlString
"/> resource.</returns>
19
public static
LocalizedHtmlString
GetHtml(this IHtmlLocalizer htmlLocalizer, string name)
28
/// Gets the <see cref="
LocalizedHtmlString
"/> resource for a specific name.
33
/// <returns>The <see cref="
LocalizedHtmlString
"/> resource.</returns>
34
public static
LocalizedHtmlString
GetHtml(this IHtmlLocalizer htmlLocalizer, string name, params object[] arguments)
HtmlLocalizerOfT.cs (2)
27
public virtual
LocalizedHtmlString
this[string name]
38
public virtual
LocalizedHtmlString
this[string name, params object[] arguments]
IHtmlLocalizer.cs (4)
18
/// <returns>The string resource as a <see cref="
LocalizedHtmlString
"/>.</returns>
19
LocalizedHtmlString
this[string name] { get; }
27
/// <returns>The formatted string resource as a <see cref="
LocalizedHtmlString
"/>.</returns>
28
LocalizedHtmlString
this[string name, params object[] arguments] { get; }
LocalizedHtmlString.cs (3)
17
/// Creates an instance of <see cref="
LocalizedHtmlString
"/>.
27
/// Creates an instance of <see cref="
LocalizedHtmlString
"/>.
38
/// Creates an instance of <see cref="
LocalizedHtmlString
"/>.
ViewLocalizer.cs (2)
43
public virtual
LocalizedHtmlString
this[string key]
54
public virtual
LocalizedHtmlString
this[string key, params object[] arguments]