Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.UI;
/// <summary>
/// Resource location
/// </summary>
public enum ResourceLocation
{
/// <summary>
/// Pinned to the declaring place but moves to the bundle if enabled.
/// </summary>
Auto,
/// <summary>
/// Pinned to the declaring place
/// </summary>
None,
/// <summary>
/// Header
/// </summary>
Head,
/// <summary>
/// Footer
/// </summary>
Footer,
}