Try your search with a different keyword or use * as a wildcard.
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
}