Webiant Logo Webiant Logo
  1. No results found.

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

LoadPluginsMode.cs

namespace Nop.Services.Plugins;

/// 
/// Represents a mode to load plugins
/// 
public enum LoadPluginsMode
{
    /// 
    /// All (Installed and Not installed)
    /// 
    All = 0,

    /// 
    /// Installed only
    /// 
    InstalledOnly = 10,

    /// 
    /// Not installed only
    /// 
    NotInstalledOnly = 20
}