Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ResourceLocation.cs


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,
}