/// <summary> /// Constructs a new instance of the Plugin's settings form. /// </summary> public frmPluginSettings() { // // Required for Windows Form Designer support // InitializeComponent(); settings = PluginSettings.Instance(); }
/// <summary> /// Constructs a new instance of the <see cref="CrawlWave.ServerPlugins.DBUpdater.DBUpdaterPlugin"/> class. /// </summary> public DBUpdaterPlugin() { dataDependent = true; description = "CrawlWave Database Updater Plugin"; enabled = true; host = null; name = "CrawlWave.ServerPlugins.DBUpdater"; percent = 0; settingsPath = String.Empty; state = PluginState.Stopped; version = Assembly.GetExecutingAssembly().GetName().Version.ToString(); settings = PluginSettings.Instance(); dbcon = new SqlConnection(settings.DBConnectionString); pluginThread = null; random = new Random(); mustStop = false; banned = BannedHostsCache.Instance(); robots = RobotsCache.Instance(); }
/// <summary> /// Provides a global access point for the single instance of the <see cref="PluginSettings"/> /// class. /// </summary> /// <returns>A reference to the single instance of <see cref="PluginSettings"/>.</returns> public static PluginSettings Instance() { if (instance==null) { lock(typeof(PluginSettings)) { if( instance == null ) { instance = new PluginSettings(); } } } return instance; }