Try your search with a different keyword or use * as a wildcard.
using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Mvc.Razor.TagHelpers;
using Microsoft.AspNetCore.Mvc.Routing;
using Microsoft.AspNetCore.Razor.TagHelpers;
using Nop.Web.Framework.UI;
namespace Nop.Web.Framework.TagHelpers.Shared;
///
/// CSS bundling tag helper
///
[HtmlTargetElement(LINK_TAG_NAME, Attributes = "[rel=stylesheet]")]
public partial class NopLinkTagHelper : UrlResolutionTagHelper
{
#region Constants
protected const string LINK_TAG_NAME = "link";
protected const string EXCLUDE_FROM_BUNDLE_ATTRIBUTE_NAME = "asp-exclude-from-bundle";
protected const string HREF_ATTRIBUTE_NAME = "href";
#endregion
#region Fields
protected readonly INopHtmlHelper _nopHtmlHelper;
#endregion
#region Ctor
public NopLinkTagHelper(HtmlEncoder htmlEncoder,
INopHtmlHelper nopHtmlHelper,
IUrlHelperFactory urlHelperFactory) : base(urlHelperFactory, htmlEncoder)
{
_nopHtmlHelper = nopHtmlHelper;
}
#endregion
#region Methods
public override Task ProcessAsync(TagHelperContext context, TagHelperOutput output)
{
ArgumentNullException.ThrowIfNull(context);
ArgumentNullException.ThrowIfNull(output);
_nopHtmlHelper.AddCssFileParts(Href, string.Empty, ExcludeFromBundle);
output.SuppressOutput();
return Task.CompletedTask;
}
#endregion
#region Properties
///
/// A value indicating if a file should be excluded from the bundle
///
[HtmlAttributeName(EXCLUDE_FROM_BUNDLE_ATTRIBUTE_NAME)]
public bool ExcludeFromBundle { get; set; }
///
/// Address of the linked resource
///
[HtmlAttributeName(HREF_ATTRIBUTE_NAME)]
public string Href { get; set; }
#endregion
}