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